summaryrefslogtreecommitdiff
path: root/.emacs.d/modules
diff options
context:
space:
mode:
Diffstat (limited to '.emacs.d/modules')
-rw-r--r--.emacs.d/modules/thanos-shells.el17
1 files changed, 10 insertions, 7 deletions
diff --git a/.emacs.d/modules/thanos-shells.el b/.emacs.d/modules/thanos-shells.el
index 2242733..0e7c476 100644
--- a/.emacs.d/modules/thanos-shells.el
+++ b/.emacs.d/modules/thanos-shells.el
@@ -33,6 +33,9 @@
(setenv "SBCL_HOME" "~/Developer/common-lisp/sbcl")
(setenv "XDG_SESSION_TYPE" "x11")
+;; yay completions
+(require 'pcomplete-yay)
+
;; configuration with eat
(require 'eshell)
@@ -106,13 +109,13 @@
;; Setting eshell aliases
(defvar thanos/aliases
'((g . magit)
- (gl . magit-log)
- (gc . magit-clone)
- (d . dired)
- (o . find-file)
- (oo . find-file-other-window)
- (ll . (lambda () (eshell/ls '-lha)))
- (eshell/clear . eshell/clear-scrollback)))
+ (gl . magit-log)
+ (gc . magit-clone)
+ (d . dired)
+ (o . find-file)
+ (oo . find-file-other-window)
+ (ll . (lambda () (eshell/ls '-lha)))
+ (eshell/clear . eshell/clear-scrollback)))
(defun thanos/set-eshell-aliases (aliases)
"Set ALIASES as eshell aliases."