From cd7e4743d8da5b339d6a36b4299d7bc6f0e8f58d Mon Sep 17 00:00:00 2001 From: Evie Litherland-Smith Date: Mon, 6 May 2024 18:40:10 +0100 Subject: [PATCH] Update home-configuration aliases and links --- home-configuration.scm | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/home-configuration.scm b/home-configuration.scm index 4f749f7..01eafbf 100644 --- a/home-configuration.scm +++ b/home-configuration.scm @@ -20,9 +20,10 @@ (services (list (service home-bash-service-type (home-bash-configuration - (aliases '(("grep" . "grep --color=auto") - ("ip" . "ip -color=auto") - ("ll" . "ls -l") - ("ls" . "ls -p --color=auto"))) - (bashrc (list (local-file "./.bashrc" "bashrc"))) - (bash-profile (list (local-file "./.bash_profile" "bash_profile")))))))) + (aliases '(("eza" . "eza --icons --git --octal-permissions") + ("gsa" . "git-sync-all") + ("ls" . "eza") + ("la" . "eza -a") + ("ll" . "eza -l") + ("lla" . "eza -la") + ("lt" . "eza --tree"))))))))