aboutsummaryrefslogtreecommitdiff
path: root/common/.config
diff options
context:
space:
mode:
authorjjanzen <jjanzen@jjanzen.ca>2025-03-13 17:54:25 -0500
committerjjanzen <jjanzen@jjanzen.ca>2025-03-13 17:54:25 -0500
commit97be78ce3576322ef6bbf221ef4cc5ba225b9b15 (patch)
treea005d4e5538b5d90a46319614ed3eb92dacf01ed /common/.config
parentf8953990dce4bac820a9663a219000fb51a87499 (diff)
system changes
Diffstat (limited to 'common/.config')
-rw-r--r--common/.config/emacs/init.el.org10
1 files changed, 1 insertions, 9 deletions
diff --git a/common/.config/emacs/init.el.org b/common/.config/emacs/init.el.org
index 4f2472a..d8cf12c 100644
--- a/common/.config/emacs/init.el.org
+++ b/common/.config/emacs/init.el.org
@@ -314,21 +314,13 @@ Install and configure =eat= as a terminal emulator in Emacs.
(use-package eat
:init
(setopt eat-kill-buffer-on-exit t)
- (defun jj/eshell-quit-or-delete-char (arg)
- (interactive "p")
- (if (and (eolp) (looking-back eshell-prompt-regexp))
- (progn
- (eshell-life-is-too-much)
- (ignore-errors
- (delete-window)))
- (delete-forward-char arg)))
+ ;;(add-to-list 'eshell-modules-list 'eshell-rebind)
:config
(eat-eshell-mode)
(setq eshell-visual-commands '())
:hook
(eat-mode . (lambda () (display-line-numbers-mode -1)))
(eshell-mode . (lambda () (display-line-numbers-mode -1)
- (bind-keys :map eshell-mode-map ("C-d" . jj/eshell-quit-or-delete-char))
(eshell/alias "ll" "ls -alF $@*")
(eshell/alias "la" "ls -a $@*")
(eshell/alias "l" "ls -F $@*")))