Skip to content

Commit

Permalink
feat(evil-matchit): better % functionality
Browse files Browse the repository at this point in the history
  • Loading branch information
LionyxML committed Dec 14, 2024
1 parent 405564d commit 202cb93
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions init.el
Original file line number Diff line number Diff line change
Expand Up @@ -1009,6 +1009,19 @@
(global-evil-surround-mode 1))


;; EVIL MATCHIT
;; The `evil-matchit' package extends `evil-mode' by enabling
;; text object matching for structures such as parentheses, HTML
;; tags, and other paired delimiters. This makes it easier to
;; navigate and manipulate code blocks.
;; Just use % for jumping between matching structures to check it out.
(use-package evil-matchit
:ensure t
:after evil-collection
:config
(global-evil-matchit-mode 1))


;; UNDO TREE
;; The `undo-tree' package provides an advanced and visual way to
;; manage undo history. It allows you to navigate and visualize your
Expand Down

0 comments on commit 202cb93

Please sign in to comment.