Fix show-parens background and increase recursion limits
This commit is contained in:
parent
2a8ff7c675
commit
b7152af549
@ -181,8 +181,8 @@
|
||||
`(org-clock-overlay ((t (:foreground, *mode-line-bg* :background, *string*))))
|
||||
|
||||
;; show-paren
|
||||
`(show-paren-mismatch ((t (:background, *bg-1* :foreground, *red* :weight bold :underline t))))
|
||||
`(show-paren-match ((t (:background, *bg-1* :foreground, *green* :weight bold :underline t))))
|
||||
`(show-paren-mismatch ((t (:foreground, *red* :weight bold :underline t))))
|
||||
`(show-paren-match ((t (:foreground, *green* :weight bold :underline t))))
|
||||
|
||||
;; rainbow delimiters mode
|
||||
`(rainbow-delimiters-depth-1-face ((t (:foreground ,*rdd-1*))))
|
||||
|
6
init.el
6
init.el
@ -109,4 +109,10 @@
|
||||
(add-hook 'minibuffer-setup-hook #'my-minibuffer-setup-hook)
|
||||
(add-hook 'minibuffer-exit-hook #'my-minibuffer-exit-hook)
|
||||
|
||||
;; --------------------------------------------------------------------------
|
||||
;; Increase recursion limits.
|
||||
;; --------------------------------------------------------------------------
|
||||
(setq-default max-specpdl-size 20000) ;; ~15x original value
|
||||
(setq-default max-lisp-eval-depth 24000) ;; 30x orignal value
|
||||
|
||||
) ;; ((gc-cons-threshold most-positive-fixnum))
|
||||
|
Reference in New Issue
Block a user