mirror of
https://github.com/doomemacs/doomemacs
synced 2025-08-01 12:17:25 -05:00
feature/evil: refactor
This commit is contained in:
@ -23,9 +23,6 @@
|
||||
mouse-yank-at-point t ; middle-click paste at point, not at click
|
||||
resize-mini-windows 'grow-only ; Minibuffer resizing
|
||||
show-help-function nil ; hide :help-echo text
|
||||
show-paren-delay 0.075
|
||||
show-paren-highlight-openparen t
|
||||
show-paren-when-point-inside-paren t
|
||||
split-width-threshold nil ; favor horizontal splits
|
||||
uniquify-buffer-name-style 'forward
|
||||
use-dialog-box nil ; always avoid GUI
|
||||
@ -89,6 +86,12 @@ local value, whether or not it's permanent-local. Therefore, we cycle
|
||||
(require 'winner)
|
||||
(add-hook 'window-setup-hook #'winner-mode)
|
||||
|
||||
;; highlight matching delimiters
|
||||
(setq show-paren-delay 0.2
|
||||
show-paren-highlight-openparen t
|
||||
show-paren-when-point-inside-paren t)
|
||||
(show-paren-mode +1)
|
||||
|
||||
|
||||
;;
|
||||
;; Bootstrap
|
||||
|
Reference in New Issue
Block a user