From dd9776bae7e5afb4f698a1104d16ab0feb43dbbf Mon Sep 17 00:00:00 2001 From: Miranda Marquez Date: Sun, 7 Apr 2024 19:13:37 -0800 Subject: [PATCH] use eza for ls, it's better! thanks cafkafk-senpai --- modules/shell.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/modules/shell.nix b/modules/shell.nix index 90b486d..40d2764 100644 --- a/modules/shell.nix +++ b/modules/shell.nix @@ -2,6 +2,9 @@ { programs.bash = { enable = true; + shellAliases = { + ls = "exa"; + }; initExtra = '' export EDITOR=emacs\ -nw '';