tools/eshell: remove custom aliases

That belongs in my private module
This commit is contained in:
Henrik Lissner 2018-05-15 01:33:21 +02:00
parent a3800f3949
commit ba2fb4a82d
No known key found for this signature in database
GPG key ID: 5F6C0EA160557395

View file

@ -33,19 +33,9 @@
(add-hook 'eshell-mode-hook #'+eshell|init)
(add-hook 'eshell-exit-hook #'+eshell|cleanup)
(after! em-alias
(setq eshell-command-aliases-list
(append eshell-command-aliases-list
'(("q" "exit")
("l" "ls -1")
("ll" "ls -l")
("la" "ls -la")
("g" "hub")
("gs" "hub status --short .")))))
(after! em-term
;; Visual commands require a proper terminal. Eshell can't handle that, so it
;; delegates these commands to a term buffer.
;; Visual commands require a proper terminal. Eshell can't handle that, so
;; it delegates these commands to a term buffer.
(setq eshell-visual-commands
(append eshell-visual-commands '("tmux" "htop" "bash" "zsh" "fish" "vim" "nvim"))
eshell-visual-subcommands '(("git" "log" "l" "diff" "show"))))