From a364b7bb3019ac7b4ef2031cf5edaee90f92c033 Mon Sep 17 00:00:00 2001 From: smayzy Date: Thu, 3 Jul 2025 18:25:35 +0200 Subject: [PATCH] alias for grep and cp --- hosts/common/home.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/hosts/common/home.nix b/hosts/common/home.nix index 2385240..4c05a32 100644 --- a/hosts/common/home.nix +++ b/hosts/common/home.nix @@ -43,6 +43,7 @@ home.sessionVariables = { EDITOR = "vim"; GTK_THEME = "Adwaita:dark"; + MANPAGER = "nvim +Man!"; }; dconf.settings = { @@ -59,6 +60,8 @@ syntaxHighlighting.enable = true; history.size = 100000; shellAliases = { + grep = "grep --color=auto"; + cp = "cp -r"; }; };