Add l and f default aliases to eshell

For ls -lh and find-file, respectively.
This commit is contained in:
Henrik Lissner 2018-06-30 13:20:24 +02:00
parent 6014a416b3
commit 5e9f74c269
No known key found for this signature in database
GPG key ID: 5F6C0EA160557395

View file

@ -20,9 +20,11 @@ buffer.")
(defvar +eshell-aliases
'(("q" "exit") ; built-in
("f" "find-file $1")
("bd" "eshell-up $1") ; `eshell-up'
("rg" "rg --color=always")
("ag" "ag --color=always")
("l" "ls -lh")
("ll" "ls -lah")
("clear" "clear-scrollback")) ; more sensible than default
"An alist of default eshell aliases, meant to emulate useful shell utilities,