From a45556f05bc14bbc84104c02ff3535c7f2b6931e Mon Sep 17 00:00:00 2001 From: Crony Akatsuki Date: Fri, 7 Feb 2025 21:01:52 +0100 Subject: [PATCH] Add some zsh aliases. --- modules/home-manager/zsh.nix | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/modules/home-manager/zsh.nix b/modules/home-manager/zsh.nix index 70eaa6b..bea94b5 100644 --- a/modules/home-manager/zsh.nix +++ b/modules/home-manager/zsh.nix @@ -19,14 +19,18 @@ dotDir = ".config/zsh"; shellAliases = { + # General aliases grep = "grep --color=auto"; cp = "cp -iv"; rm = "rm -iv"; mkd = "mkdir -pv"; less = "less -R"; - nnn = ''LC_COLLATE="C" nnn -xeaiH''; df = "df -h -x devtmpfs -x tmpfs -x usbfs -x loop"; free = "free -mht"; + # nnn on crack + nnn = ''LC_COLLATE="C" nnn -xeaiH''; + # Buku powerup + b = "buku -p"; }; initExtra = ''