3 changed files with 36 additions and 4 deletions
@ -0,0 +1,23 @@ |
|||||
|
{ config, pkgs, ... }: |
||||
|
|
||||
|
{ |
||||
|
programs.fish = { |
||||
|
enable = true; |
||||
|
autocd = true; |
||||
|
dotDir = ".config/zsh"; |
||||
|
enableAutosuggestions = true; |
||||
|
enableCompletion = true; |
||||
|
|
||||
|
defaultKeymap = "viins"; |
||||
|
|
||||
|
shellAliases = { |
||||
|
"..." = "cd"; |
||||
|
sl = "exa"; |
||||
|
ls = "exa"; |
||||
|
l = "exa -l"; |
||||
|
la = "exa -la"; |
||||
|
|
||||
|
rs = "rsync -a --info=progress2 "; |
||||
|
}; |
||||
|
}; |
||||
|
} |
||||
Loading…
Reference in new issue