diff options
author | Thanos Apollo <[email protected]> | 2023-10-08 09:13:00 +0300 |
---|---|---|
committer | Thanos Apollo <[email protected]> | 2023-10-08 09:13:00 +0300 |
commit | 8908e14d101d113179208447858b16d652d37ef5 (patch) | |
tree | baabff4536926561e5ca5cab9340f64ff920c8f7 /.emacs.d/modules/thanos-shells.el | |
parent | e9fc65e1e06d4288a165cd51578c62c5c0e545a3 (diff) |
emacs:(shells) Add pcomplete-yay
Diffstat (limited to '.emacs.d/modules/thanos-shells.el')
-rw-r--r-- | .emacs.d/modules/thanos-shells.el | 17 |
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." |