Add visual-fill-column back
No hooks so it's never on automatically, only on demand
This commit is contained in:
parent
a341f50762
commit
eb601ee3a7
7
init.el
7
init.el
|
@ -151,6 +151,13 @@
|
||||||
(global-visual-line-mode +1)
|
(global-visual-line-mode +1)
|
||||||
(setopt visual-line-fringe-indicators '(left-curly-arrow right-curly-arrow))
|
(setopt visual-line-fringe-indicators '(left-curly-arrow right-curly-arrow))
|
||||||
|
|
||||||
|
(use-package visual-fill-column
|
||||||
|
:if (package-installed-p 'visual-fill-column)
|
||||||
|
:custom
|
||||||
|
(visual-fill-column-width 120)
|
||||||
|
(visual-fill-column-center-text t)
|
||||||
|
(visual-fill-column-enable-sensible-window-split t))
|
||||||
|
|
||||||
(setq split-height-threshold nil
|
(setq split-height-threshold nil
|
||||||
split-width-threshold 160)
|
split-width-threshold 160)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue