diff options
Diffstat (limited to 'emacs.org')
-rwxr-xr-x | emacs.org | 9 |
1 files changed, 3 insertions, 6 deletions
@@ -1039,17 +1039,14 @@ Create function to watch videos using ~mpv~ #+end_src ** Aliases & Paths #+begin_src emacs-lisp - ;; List of aliases (setq thanos/eshell-aliases '((g . magit) (gl . magit-log) (d . dired) - (o . find-file) - (f . find-file) + (o . find-file) (oo . find-file-other-window) - (ls . (eshell/ls '-la)) - (ll . eshell/ls) - (clear . eshell/clear-scrollback))) + (l . (lambda () (eshell/ls '-la))) + (eshell/clear . eshell/clear-scrollback))) ;; Define aliases using `mapcar` (mapc (lambda (alias) |