More zsh config
This commit is contained in:
parent
9451dc2965
commit
83338826d1
1 changed files with 12 additions and 1 deletions
|
@ -6,11 +6,22 @@
|
|||
home-manager.enable = true;
|
||||
zsh = {
|
||||
enable = true;
|
||||
history.share = true;
|
||||
history = {
|
||||
size = 102400;
|
||||
save = 102400;
|
||||
ignoreDups = true;
|
||||
expireDuplicatesFirst = true;
|
||||
extended = true;
|
||||
share = true;
|
||||
};
|
||||
enableAutosuggestions = true;
|
||||
enableCompletion = true;
|
||||
oh-my-zsh = {
|
||||
enable = true;
|
||||
theme = "agnoster";
|
||||
};
|
||||
sessionVariables = { EDITOR="vim"; VISUAL="vim"; PAGER="less"; };
|
||||
shellAliases = { tmate = "tmux detach-client -E 'tmate;tmux'"; };
|
||||
};
|
||||
firefox.enable = true;
|
||||
chromium.enable = true;
|
||||
|
|
Loading…
Reference in a new issue