diff --git a/hosts/p14s/home.nix b/hosts/p14s/home.nix index 65fc6b7..c8e4814 100644 --- a/hosts/p14s/home.nix +++ b/hosts/p14s/home.nix @@ -38,6 +38,10 @@ btop fd # unnamed dependency for the fuzzy finder fzf lazygit + eza # replacement for ls + bat # replacement for cat + ripgrep # search files for text/patterns + entr # run cmd when file changes # Network wireguard-go @@ -115,6 +119,12 @@ # Update the font cache fonts.fontconfig.enable = true; + # Zoxide - a replacement for ls + programs.zoxide = { + enable = true; + enableZshIntegration = true; + }; + # SSH programs.ssh = { enable = true; @@ -144,6 +154,11 @@ shellAliases = { vi = "nvim"; vim = "nvim"; + ls = "eza -g"; + ll = "eza -alhg"; + tree = "eza --tree"; + cat = "bat"; + cd = "z"; }; initExtra = '' setopt nonomatch # forward wildcard if no match