diff options
Diffstat (limited to '.emacs.d/modules/thanos-shells.el')
-rw-r--r-- | .emacs.d/modules/thanos-shells.el | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/.emacs.d/modules/thanos-shells.el b/.emacs.d/modules/thanos-shells.el index a06346d..c311d54 100644 --- a/.emacs.d/modules/thanos-shells.el +++ b/.emacs.d/modules/thanos-shells.el @@ -35,7 +35,7 @@ ;; configuration with eat -(require 'pcomplete-yay) +;;(require 'pcomplete-yay) ;; (require 'pcomplete) @@ -47,11 +47,13 @@ :straight t :hook (eshell-mode . eat-eshell-mode) - (eshell-mode . eat-eshell-visual-command-mode)) + (eshell-mode . eat-eshell-visual-command-mode) + :config + (setf eat-term-name "xterm-256color")) -;;;; sudo completion -(defun pcomplete/sudo () - "Completion rules for the `sudo' command." +;;;; doas completion +(defun pcomplete/doas () + "Completion rules for the `doas' command." (let ((pcomplete-ignore-case t)) (pcomplete-here (funcall pcomplete-command-completion-function)) (while (pcomplete-here (pcomplete-entries))))) |