cli: Define some usefull shell aliases

This commit is contained in:
Alexander Kobjolke 2023-07-02 10:49:58 +02:00
parent 3649a22287
commit cbbc252230

View file

@ -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" ];