627 B
627 B
| title | date | seo_description | draft | snippet_types | |
|---|---|---|---|---|---|
| make emacs words closer to vim | 2021-10-20T20:18:34+02:00 | code snippet explaining how to make emacs more like vim | false |
|
I love doomacs but jumping around words it bugged me underscores were not considered part of the word like in vim. After six months of dealing with it I stumbled upon a solution!
Simply put this in my .doom.d/config.el.
(modify-syntax-entry ?_ "w")
source: emacs.stackexchange