diff options
author | David Morgan <djm_uk@protonmail.com> | 2024-09-09 12:00:25 +0100 |
---|---|---|
committer | David Morgan <djm_uk@protonmail.com> | 2024-09-09 12:00:25 +0100 |
commit | 726b370b03935dbdabe512583eb4025e4f6c710a (patch) | |
tree | ea5383c4a5b749ac24c17da587db4202eb9fc259 /nix-conf/home | |
parent | 80858717f907aa7468591fdef0847a56728fedec (diff) | |
download | dotfiles-726b370b03935dbdabe512583eb4025e4f6c710a.tar.gz |
Retain control over eza aliases
Diffstat (limited to 'nix-conf/home')
-rw-r--r-- | nix-conf/home/includes/common.nix | 4 | ||||
-rw-r--r-- | nix-conf/home/includes/zsh.nix | 2 |
2 files changed, 6 insertions, 0 deletions
diff --git a/nix-conf/home/includes/common.nix b/nix-conf/home/includes/common.nix index d95b67c..5e32b95 100644 --- a/nix-conf/home/includes/common.nix +++ b/nix-conf/home/includes/common.nix @@ -124,6 +124,10 @@ in enable = true; git = true; icons = true; + enableBashIntegration = false; + enableZshIntegration = false; + enableFishIntegration = false; + enableIonIntegration = false; extraOptions = [ "--colour=auto" "--long" diff --git a/nix-conf/home/includes/zsh.nix b/nix-conf/home/includes/zsh.nix index a01483a..8810389 100644 --- a/nix-conf/home/includes/zsh.nix +++ b/nix-conf/home/includes/zsh.nix @@ -64,7 +64,9 @@ in mkdir = "mkdir -v"; cat = "bat -p"; l = "eza"; + la = "eza -a"; ll = "\\eza --icons --git --colour --long --group-directories-first --classify"; + lla = "ll -a"; t = "eza --tree"; pp = ''pushbullet push "Pixel" link "''${1}" "''${1}"''; |