summary refs log tree commit diff
path: root/emacs/custom
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2021-10-17 11:30:33 -0700
committerFranck Cuny <franck@fcuny.net>2021-10-17 11:30:33 -0700
commit1bfce652c0da47dd5001c6c198aa2be779206c5e (patch)
tree3ddbb73423bf4549b9218a2ccbcde0a89986b766 /emacs/custom
parentemacs: be explicit about eshell modules we load (diff)
downloademacs.d-1bfce652c0da47dd5001c6c198aa2be779206c5e.tar.gz
emacs: add a few more aliases to eshell
Diffstat (limited to '')
-rw-r--r--emacs/custom/fcuny-eshell.el9
1 files changed, 8 insertions, 1 deletions
diff --git a/emacs/custom/fcuny-eshell.el b/emacs/custom/fcuny-eshell.el
index 2cd1455..f54cd4b 100644
--- a/emacs/custom/fcuny-eshell.el
+++ b/emacs/custom/fcuny-eshell.el
@@ -31,10 +31,17 @@
   (eshell/alias "emacs" "find-file $1")
   (eshell/alias "ee" "find-file-other-window $1")
 
+  (eshell/alias "d" "dired $1")
+
   (eshell/alias "gs" "magit-status")
   (eshell/alias "gd" "magit-diff-unstaged")
   (eshell/alias "gds" "magit-diff-staged")
-  (eshell/alias "d" "dired $1")
+
+  (eshell/alias "rg" "counsel-rg")
+
+  (eshell/alias "cal" "calendar")
+
+  (eshell/alias "agenda" "org-agenda")
 
    ;; Disable current line highlighting.
   (setq-local global-hl-line-mode nil))