From 9d816cf136df315b125012487bce89963d07a8e0 Mon Sep 17 00:00:00 2001 From: Rutherther Date: Tue, 5 Nov 2024 19:47:47 +0100 Subject: [PATCH] feat: better terminal usage --- init.el | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/init.el b/init.el index c0ab6c7..2b5f24f 100644 --- a/init.el +++ b/init.el @@ -122,6 +122,11 @@ (setq whitespace-line-column 140) ;; limit line length (setq whitespace-style '(face tabs empty trailing lines-tail))) +(my-use-package evil-terminal-cursor-changer + :ensure t + :config + (evil-terminal-cursor-changer-activate)) + ;; Default editing configs (setq create-lockfiles nil) (setq auto-save-default nil) @@ -1031,6 +1036,7 @@ completion-cycle-threshold completion-cycling) (consult-completion-in-region beg end table pred))))) :config + (global-unset-key (kbd "C-@") ) (global-corfu-mode 1) (add-to-list 'corfu-continue-commands #'corfu-move-to-minibuffer)) -- 2.48.1