We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 405564d commit 202cb93Copy full SHA for 202cb93
1 file changed
init.el
@@ -1009,6 +1009,19 @@
1009
(global-evil-surround-mode 1))
1010
1011
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
1025
;; UNDO TREE
1026
;; The `undo-tree' package provides an advanced and visual way to
1027
;; manage undo history. It allows you to navigate and visualize your
0 commit comments