From 95d26adf2e40b541094af27798ae4ac0cc01c4a9 Mon Sep 17 00:00:00 2001 From: Charlie Root Date: Tue, 13 Aug 2024 11:48:25 +0200 Subject: [PATCH] fish: removed aliases --- modules/cli/fish.nix | 32 +++++++++++++++----------------- 1 file changed, 15 insertions(+), 17 deletions(-) diff --git a/modules/cli/fish.nix b/modules/cli/fish.nix index d0a8231..c0cb625 100644 --- a/modules/cli/fish.nix +++ b/modules/cli/fish.nix @@ -48,23 +48,21 @@ in { inherit (pkgs.fishPlugins.puffer) src; } ]; - shellAbbrs = - { - c = "clear"; - cc = "cd ~ && clear"; - mv = "mv -iv"; - rm = "trash -v"; - ls = "eza "; - l = "eza -a "; - la = "eza -lha --git"; - lg = "lazygit"; - cd = "z"; - v = "nvim"; - h = "hx"; - k = "kak"; - e = "emacs"; - } - // cfg.extraAliases; + shellAbbrs = { + c = "clear"; + cc = "cd ~ && clear"; + mv = "mv -iv"; + rm = "trash -v"; + ls = "eza "; + l = "eza -a "; + la = "eza -lha --git"; + lg = "lazygit"; + cd = "z"; + v = "nvim"; + h = "hx"; + k = "kak"; + e = "emacs"; + }; }; }; };