From 5771ae4219f5315ac6db51eaac6da7c7caab02d2 Mon Sep 17 00:00:00 2001 From: jjanzen Date: Thu, 13 Mar 2025 18:17:56 -0500 Subject: system changes --- common/.config/emacs/init.el.org | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'common/.config') diff --git a/common/.config/emacs/init.el.org b/common/.config/emacs/init.el.org index 302c2f8..5f396b6 100644 --- a/common/.config/emacs/init.el.org +++ b/common/.config/emacs/init.el.org @@ -317,8 +317,13 @@ Install and configure =eat= as a terminal emulator in Emacs. (defun jj/eshell-quit-or-delete-char (arg) (interactive "p") (if (and (eolp) (looking-back eshell-prompt-regexp)) - (eshell-life-is-too-much) + (eshell-life-is-too-much) (delete-forward-char arg))) + (defun eshell/manage-configs (arg) + (let ((dir (eshell/pwd))) + (eshell/cd "~/.dotfiles") + (compile (concat "make " arg)) + (eshell/cd dir))) :config (eat-eshell-mode) (setq eshell-visual-commands '()) -- cgit v1.2.3