Add fboundp guard around fringe-mode
This commit is contained in:
parent
25fb52e317
commit
29f88e6c63
1 changed files with 1 additions and 1 deletions
|
@ -214,7 +214,7 @@ local value, whether or not it's permanent-local. Therefore, we cycle
|
||||||
;; a good indicator that Emacs isn't frozen
|
;; a good indicator that Emacs isn't frozen
|
||||||
(add-hook 'doom-post-init-hook #'blink-cursor-mode)
|
(add-hook 'doom-post-init-hook #'blink-cursor-mode)
|
||||||
;; standardize default fringe width
|
;; standardize default fringe width
|
||||||
(fringe-mode doom-fringe-size)
|
(if (fboundp 'fringe-mode) (fringe-mode doom-fringe-size))
|
||||||
;; draw me like one of your French editors
|
;; draw me like one of your French editors
|
||||||
(tooltip-mode -1) ; relegate tooltips to echo area only
|
(tooltip-mode -1) ; relegate tooltips to echo area only
|
||||||
(menu-bar-mode -1)
|
(menu-bar-mode -1)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue