diff options
author | Thanos Apollo <[email protected]> | 2023-10-02 12:27:55 +0300 |
---|---|---|
committer | Thanos Apollo <[email protected]> | 2023-10-02 12:27:55 +0300 |
commit | d027156b28487d2d1340a3c6adf2204e6784fd96 (patch) | |
tree | 0f00958082d5cf6b9bd0c80533e03d4ed2907d3d /.emacs.d/modules/thanos-shells.el | |
parent | f870198e77c86aedf8a23796063aca32cbc1b0ca (diff) |
emacs: Update eshells with eat config & env variables
Diffstat (limited to '.emacs.d/modules/thanos-shells.el')
-rw-r--r-- | .emacs.d/modules/thanos-shells.el | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/.emacs.d/modules/thanos-shells.el b/.emacs.d/modules/thanos-shells.el index 36552d4..f8aaa9f 100644 --- a/.emacs.d/modules/thanos-shells.el +++ b/.emacs.d/modules/thanos-shells.el @@ -30,9 +30,7 @@ ;;; Code: (setenv "EDITOR" "emacsclient -n") -(setenv "DEBEMAIL" "[email protected]") -(setenv "DEBNAME" "Thanos Apollo") -(setenv "SBCL_HOME" "/usr/local/lib/sbcl") +(setenv "SBCL_HOME" "~/Developer/common-lisp/sbcl") (setenv "XDG_SESSION_TYPE" "x11") ;; configuration with eat @@ -40,8 +38,9 @@ (require 'eat) (setf eshell-visual-commands '()) -(eat-eshell-mode 1) +(add-hook 'eshell-load-hook #'eat-eshell-mode) +(add-hook 'eshell-load-hook #'eat-eshell-visual-command-mode) ;;;; sudo completion (defun pcomplete/sudo () "Completion rules for the `sudo' command." |