Added zsh
This commit is contained in:
@@ -44,20 +44,36 @@
|
||||
flavor = "mocha";
|
||||
};
|
||||
|
||||
programs.bash = {
|
||||
# programs.bash = {
|
||||
# enable = true;
|
||||
# enableCompletion = true;
|
||||
# historyIgnore = [
|
||||
# "ls"
|
||||
# "ls -a"
|
||||
# "ls -l"
|
||||
# "ls -la"
|
||||
# "cd"
|
||||
# "exit"
|
||||
# ];
|
||||
# };
|
||||
|
||||
programs.zsh = {
|
||||
enable = true;
|
||||
enableCompletion = true;
|
||||
bashrcExtra = ''
|
||||
export SSH_AUTH_SOCK=/home/chase/.bitwarden-ssh-agent.sock
|
||||
'';
|
||||
historyIgnore = [
|
||||
"ls"
|
||||
"ls -a"
|
||||
"ls -l"
|
||||
"ls -la"
|
||||
"cd"
|
||||
"exit"
|
||||
];
|
||||
enableBashCompletion = true;
|
||||
autosuggestion.enable = true;
|
||||
history = {
|
||||
append = true;
|
||||
extended = true;
|
||||
ignoreDups = true;
|
||||
ignorePatterns = [
|
||||
"ls *"
|
||||
"cd *"
|
||||
"gs"
|
||||
"exit"
|
||||
];
|
||||
};
|
||||
syntaxHighlighting.enable = true;
|
||||
};
|
||||
|
||||
programs.bat.enable = true;
|
||||
|
Reference in New Issue
Block a user