diff options
| author | Grisha Shipunov | 2025-01-26 01:39:08 +0100 |
|---|---|---|
| committer | Grisha Shipunov | 2025-01-26 01:48:12 +0100 |
| commit | c9ddbcbc87f8be4510ba5a8acb6cc82058c01f1c (patch) | |
| tree | 1ed7a6b7a6c3b9b57ed732706a25da8ba4179082 /modules/basic-tools/fish.nix | |
| parent | f1f292bcedec080b7416d41a0cf4c5df8b5840d0 (diff) | |
cleanup
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"; + }; + }; +} |
