From 202cb9387d7d08954874ea212eb097b03d20d5e2 Mon Sep 17 00:00:00 2001 From: "Rahul M. Juliato" Date: Sat, 14 Dec 2024 17:21:26 -0300 Subject: [PATCH] feat(evil-matchit): better % functionality --- init.el | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/init.el b/init.el index dacabfb..15490fc 100644 --- a/init.el +++ b/init.el @@ -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