summary refs log tree commit diff stats
path: root/init.el
diff options
context:
space:
mode:
authorCase Duckworth2021-04-20 17:59:24 -0500
committerCase Duckworth2021-04-20 17:59:24 -0500
commit82c75698ec8cfbebc104937af870885515fc46ba (patch)
tree277a6de67cd15f7f9bf4ee78ffc12bd2d35cae49 /init.el
parentFix some dumbness (diff)
downloademacs-82c75698ec8cfbebc104937af870885515fc46ba.tar.gz
emacs-82c75698ec8cfbebc104937af870885515fc46ba.zip
Add `electric-cursor'
Mine own package!
Diffstat (limited to 'init.el')
-rw-r--r--init.el5
1 files changed, 5 insertions, 0 deletions
diff --git a/init.el b/init.el index 3a00478..dd7fc2a 100644 --- a/init.el +++ b/init.el
@@ -767,6 +767,11 @@ if ripgrep is installed, otherwise `consult-grep'."
767 (setup (:straight flyspell-correct) 767 (setup (:straight flyspell-correct)
768 (define-key flyspell-mode-map (kbd "C-;") #'flyspell-correct-wrapper))) 768 (define-key flyspell-mode-map (kbd "C-;") #'flyspell-correct-wrapper)))
769 769
770(setup (:straight (electric-cursor
771 :host github
772 :repo "duckwork/electric-cursor"))
773 (electric-cursor-mode +1))
774
770 775
771;;; Programming 776;;; Programming
772 777