From 6b04ee02590183065832ffa92afd8f1d0e8a5b16 Mon Sep 17 00:00:00 2001 From: Pedro Rey Anca Date: Wed, 6 Aug 2025 22:23:36 +0200 Subject: [PATCH] Remove unused aliases --- modules/home/zsh.nix | 16 +++------------- 1 file changed, 3 insertions(+), 13 deletions(-) diff --git a/modules/home/zsh.nix b/modules/home/zsh.nix index 610730c..6642582 100644 --- a/modules/home/zsh.nix +++ b/modules/home/zsh.nix @@ -5,36 +5,26 @@ host, ... }: { - home.packages = with pkgs; [fzf eza git fd]; + home.packages = with pkgs; [fzf git]; programs.zsh = { enable = true; enableCompletion = true; autosuggestion.enable = true; syntaxHighlighting.enable = true; + oh-my-zsh = { enable = true; plugins = ["git" "fzf"]; }; + shellAliases = { # Utils c = "clear"; cd = "z"; tt = "gtrash put"; - cat = "bat"; - nano = "micro"; - code = "codium"; - py = "python"; icat = "kitten icat"; - dsize = "du -hs"; - findw = "grep -rl"; - pdf = "tdf"; open = "xdg-open"; - find = "fd"; - - l = "eza --icons -a --group-directories-first -1"; #EZA_ICON_SPACING=2 - ll = "eza --icons -a --group-directories-first -1 --no-user --long"; - tree = "eza --icons --tree --group-directories-first"; # Nixos cdnix = "cd ~/nixos-config && codium ~/nixos-config";