summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xemacs.org9
1 files changed, 3 insertions, 6 deletions
diff --git a/emacs.org b/emacs.org
index 60b1441..7fe0265 100755
--- a/emacs.org
+++ b/emacs.org
@@ -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)