From c9ddbcbc87f8be4510ba5a8acb6cc82058c01f1c Mon Sep 17 00:00:00 2001 From: Grisha Shipunov Date: Sun, 26 Jan 2025 01:39:08 +0100 Subject: cleanup --- modules/basic-tools/fish.nix | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 modules/basic-tools/fish.nix (limited to 'modules/basic-tools/fish.nix') 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"; + }; + }; +} -- cgit v1.3.1