From cbbc252230f82edb38c3ac927d6d13b01144bb63 Mon Sep 17 00:00:00 2001 From: Alexander Kobjolke Date: Sun, 2 Jul 2023 10:49:58 +0200 Subject: [PATCH] cli: Define some usefull shell aliases --- home/cli.nix | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/home/cli.nix b/home/cli.nix index 3395faa..c49d362 100644 --- a/home/cli.nix +++ b/home/cli.nix @@ -105,7 +105,11 @@ in { enable = true; enableAutosuggestions = true; # enableSyntaxHighlighting = true; - shellAliases = { e = "emacsclient -c $@"; }; + shellAliases = { + e = "emacsclient -c $@"; + ls = "exa $@"; + t = "exa -T $@"; + }; oh-my-zsh = { enable = true; plugins = [ "git" "fzf" "fd" "z" ];