diff options
Diffstat (limited to 'modules/basic-tools/fish.nix')
| -rw-r--r-- | modules/basic-tools/fish.nix | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/modules/basic-tools/fish.nix b/modules/basic-tools/fish.nix new file mode 100644 index 0000000..b948149 --- /dev/null +++ b/modules/basic-tools/fish.nix @@ -0,0 +1,26 @@ +{ pkgs, ... }: +{ + environment.systemPackages = with pkgs; [ + lsd + fzf + grc + fishPlugins.done + fishPlugins.fzf-fish + fishPlugins.tide + fishPlugins.grc + ]; + + programs.fish = { + enable = true; + interactiveShellInit = '' + set fish_greeting + ''; + shellAliases = { + ls = "lsd --icon=never"; + l = "ls -l"; + ll = "ls -la"; + vim = "nvim"; + grep = "grep --color=auto"; + }; + }; +} |
