diff options
author | Mark Nipper <nipsy@bitgnome.net> | 2024-05-02 12:47:13 -0700 |
---|---|---|
committer | Mark Nipper <nipsy@bitgnome.net> | 2024-05-02 12:47:13 -0700 |
commit | a6919bec78739cb355ffe6c5b33fe9202822d906 (patch) | |
tree | 11dbb44a39ac0caa205aa1e2f1740f497af3e2ad /home | |
parent | 3a9585692e63338e80e21388f44541d092fd9ac9 (diff) | |
download | nix-a6919bec78739cb355ffe6c5b33fe9202822d906.tar nix-a6919bec78739cb355ffe6c5b33fe9202822d906.tar.gz nix-a6919bec78739cb355ffe6c5b33fe9202822d906.tar.bz2 nix-a6919bec78739cb355ffe6c5b33fe9202822d906.tar.lz nix-a6919bec78739cb355ffe6c5b33fe9202822d906.tar.xz nix-a6919bec78739cb355ffe6c5b33fe9202822d906.tar.zst nix-a6919bec78739cb355ffe6c5b33fe9202822d906.zip |
Fix zsh aliases
Diffstat (limited to 'home')
-rw-r--r-- | home/nipsy/common/core/zsh/default.nix | 4 | ||||
-rw-r--r-- | home/root/common/core/zsh/default.nix | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/home/nipsy/common/core/zsh/default.nix b/home/nipsy/common/core/zsh/default.nix index 77d4b75..52b654b 100644 --- a/home/nipsy/common/core/zsh/default.nix +++ b/home/nipsy/common/core/zsh/default.nix @@ -35,8 +35,8 @@ export PASSWORD_STORE_ENABLE_EXTENSIONS=true fixkeyboard = "setxkbmap -layout us -option caps:super -option compose:ralt"; grep = "grep --color=auto"; ip = "ip -c=auto"; - la = "ls -aFh --color=auto"; - ll = "ls -alF --color=auto"; + la = "ls -aF --color=auto"; + ll = "ls -alFhs --color=auto"; lock = "xscreensaver-command -lock"; steam-no-beta = "steam -clearbeta"; zgrep = "zgrep --color=auto"; diff --git a/home/root/common/core/zsh/default.nix b/home/root/common/core/zsh/default.nix index 74534f1..8c1d93c 100644 --- a/home/root/common/core/zsh/default.nix +++ b/home/root/common/core/zsh/default.nix @@ -22,8 +22,8 @@ export COLORFGBG="green;blue" shellAliases = { grep = "grep --color=auto"; ip = "ip -c=auto"; - la = "ls -aFh --color=auto"; - ll = "ls -alF --color=auto"; + la = "ls -aF --color=auto"; + ll = "ls -alFhs --color=auto"; zgrep = "zgrep --color=auto"; }; }; |