mirror of
https://github.com/doomemacs/doomemacs
synced 2025-08-01 12:17:25 -05:00
Smarter blink-matching-paren
This commit is contained in:
@ -8,7 +8,9 @@
|
||||
(add-hook! evil-normal-state-exit (setq show-paren-delay 0))
|
||||
;; Disable highlights on insert-mode
|
||||
(add-hook! evil-insert-state-entry 'evil-ex-nohighlight)
|
||||
(add-hook! undo-tree-mode (diminish 'undo-tree-mode))
|
||||
;; Prevents "matches )" messages in minibuffer
|
||||
(add-hook! evil-insert-state-entry (setq-default blink-matching-paren t))
|
||||
(add-hook! evil-insert-state-exit (setq-default blink-matching-paren nil))
|
||||
;; Always ensure evil-shift-width is consistent with tab-width
|
||||
(add-hook! evil-local-mode (setq evil-shift-width tab-width))
|
||||
:config
|
||||
|
@ -18,6 +18,7 @@
|
||||
(size-indication-mode -1)
|
||||
|
||||
(setq-default
|
||||
blink-matching-paren nil
|
||||
line-spacing 1
|
||||
;; Multiple cursors across buffers cause a strange redraw delay for
|
||||
;; some things, like auto-complete or evil-mode's cursor color
|
||||
|
Reference in New Issue
Block a user