about summary refs log tree commit diff
path: root/nix/profiles/home-manager/fish.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nix/profiles/home-manager/fish.nix')
-rw-r--r--nix/profiles/home-manager/fish.nix18
1 files changed, 0 insertions, 18 deletions
diff --git a/nix/profiles/home-manager/fish.nix b/nix/profiles/home-manager/fish.nix
deleted file mode 100644
index dee7e11..0000000
--- a/nix/profiles/home-manager/fish.nix
+++ /dev/null
@@ -1,18 +0,0 @@
-{ ... }: {
-  programs.fish = {
-    enable = true;
-    interactiveShellInit = ''
-      set fish_greeting ""
-    '';
-
-    shellAliases = {
-      l =
-        "eza --tree --level=2 --time-style=long-iso --group-directories-first --icons";
-      ll = "l -l";
-      lh = "ll";
-      la = "ll -a";
-      ld = "eza -ld";
-    };
-    shellAbbrs = { ncg = "nix-collect-garbage -d"; };
-  };
-}