aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjjanzen <jjanzen@jjanzen.ca>2025-03-09 20:03:26 -0500
committerjjanzen <jjanzen@jjanzen.ca>2025-03-09 20:03:26 -0500
commit79484296c80ae9f664cdcece6516806008ed01b8 (patch)
treea4d17a0b261e63dddc4e6b38fa51a85dddf1dba3
parenta3d5e4e32d45956bcdc4f6f6840b82f1942cd201 (diff)
system changes
-rw-r--r--common/.config/emacs/init.el.org12
1 files changed, 2 insertions, 10 deletions
diff --git a/common/.config/emacs/init.el.org b/common/.config/emacs/init.el.org
index 803d31c..f853e58 100644
--- a/common/.config/emacs/init.el.org
+++ b/common/.config/emacs/init.el.org
@@ -299,15 +299,6 @@ Install a better PDF viewer than =DocView=.
TeX-source-correlate-start-server t))
#+end_src
-Install and configure =vterm= as a terminal emulator in Emacs.
-#+begin_src emacs-lisp
- (use-package vterm
- :hook
- (vterm-mode . (lambda () (display-line-numbers-mode -1)))
- :bind
- ("C-c v" . vterm))
-#+end_src
-
Install and configure =eat= as a terminal emulator in Emacs.
#+begin_src emacs-lisp
(use-package eat
@@ -318,8 +309,9 @@ Install and configure =eat= as a terminal emulator in Emacs.
(setq eshell-visual-commands '())
:hook
(eat-mode . (lambda () (display-line-numbers-mode -1)))
+ (eshell-mode . (lambda () (display-line-numbers-mode -1)))
:bind
- ("C-c v" . eat))
+ ("C-c v" . eshell))
#+end_src
Use =corfu= and =vertico= for completions. =orderless= is used to allow searching in any portion of a string and =marginalia= gives descriptions of items in the list.