Skip to content

Commit 202cb93

Browse files
committed
feat(evil-matchit): better % functionality
1 parent 405564d commit 202cb93

1 file changed

Lines changed: 13 additions & 0 deletions

File tree

init.el

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1009,6 +1009,19 @@
10091009
(global-evil-surround-mode 1))
10101010

10111011

1012+
;; EVIL MATCHIT
1013+
;; The `evil-matchit' package extends `evil-mode' by enabling
1014+
;; text object matching for structures such as parentheses, HTML
1015+
;; tags, and other paired delimiters. This makes it easier to
1016+
;; navigate and manipulate code blocks.
1017+
;; Just use % for jumping between matching structures to check it out.
1018+
(use-package evil-matchit
1019+
:ensure t
1020+
:after evil-collection
1021+
:config
1022+
(global-evil-matchit-mode 1))
1023+
1024+
10121025
;; UNDO TREE
10131026
;; The `undo-tree' package provides an advanced and visual way to
10141027
;; manage undo history. It allows you to navigate and visualize your

0 commit comments

Comments
 (0)