Compare commits

...

2 Commits

Author SHA1 Message Date
375679068a emacs : avy style to de-bruijn 2023-10-27 15:50:33 +09:00
6436b9a2d1 emacs : evil search include underscore 2023-10-27 15:46:35 +09:00
2 changed files with 5 additions and 2 deletions

View File

@ -9,7 +9,7 @@
(use-package avy
:hook (after-init . avy-setup-default)
:config
(setq avy-style 'pre
(setq avy-style 'de-bruijn
avy-all-windows t
avy-all-windows-alt nil
avy-background t))

View File

@ -25,7 +25,10 @@
;; eshell no evil
(dolist (mode '(eshell-mode))
(add-to-list 'evil-emacs-state-modes mode)))
(with-eval-after-load 'evil
(defalias #'forward-evil-word #'forward-evil-symbol)
;; make evil-search-word look for symbol rather than word boundaries
(setq-default evil-symbol-word-search t))
(use-package evil-collection
:defer nil
:config