feature/evil: refactor
This commit is contained in:
parent
04c270d76b
commit
5fb028b49d
4 changed files with 197 additions and 199 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue