diff options
author | Case Duckworth | 2021-04-20 17:59:24 -0500 |
---|---|---|
committer | Case Duckworth | 2021-04-20 17:59:24 -0500 |
commit | 82c75698ec8cfbebc104937af870885515fc46ba (patch) | |
tree | 277a6de67cd15f7f9bf4ee78ffc12bd2d35cae49 | |
parent | Fix some dumbness (diff) | |
download | emacs-82c75698ec8cfbebc104937af870885515fc46ba.tar.gz emacs-82c75698ec8cfbebc104937af870885515fc46ba.zip |
Add `electric-cursor'
Mine own package!
-rw-r--r-- | init.el | 5 |
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 | ||