arrange users marisa:spark and satori:bat
Signed-off-by: natto1784 <natto@weirdnatto.in>
This commit is contained in:
23
home/modules/zsh.nix
Normal file
23
home/modules/zsh.nix
Normal file
@@ -0,0 +1,23 @@
|
||||
{ config, ... }:
|
||||
{
|
||||
programs.zsh = {
|
||||
enable = true;
|
||||
autocd = true;
|
||||
history = rec {
|
||||
expireDuplicatesFirst = true;
|
||||
size = 30000;
|
||||
save = size;
|
||||
};
|
||||
enableAutosuggestions = true;
|
||||
enableCompletion = true;
|
||||
enableSyntaxHighlighting = true;
|
||||
prezto = {
|
||||
enable = true;
|
||||
prompt.theme = "pure";
|
||||
autosuggestions.color = "fg=yellow,bold";
|
||||
};
|
||||
initExtra = ''
|
||||
unsetopt extendedGlob
|
||||
'';
|
||||
};
|
||||
}
|
Reference in New Issue
Block a user