Disable global-visual-line-mode, increase fill-column for org-mode to 120
This commit is contained in:
parent
990d8e52f7
commit
879a0afd63
5
init.el
5
init.el
|
@ -42,7 +42,6 @@
|
||||||
(tool-bar-mode -1)
|
(tool-bar-mode -1)
|
||||||
(scroll-bar-mode -1)
|
(scroll-bar-mode -1)
|
||||||
(global-so-long-mode +1)
|
(global-so-long-mode +1)
|
||||||
(global-visual-line-mode +1)
|
|
||||||
(global-prettify-symbols-mode +1)
|
(global-prettify-symbols-mode +1)
|
||||||
|
|
||||||
;; Some witchcraft to enable ligatures, from
|
;; Some witchcraft to enable ligatures, from
|
||||||
|
@ -523,7 +522,9 @@
|
||||||
(use-package org
|
(use-package org
|
||||||
:demand
|
:demand
|
||||||
:defines org-mode-map
|
:defines org-mode-map
|
||||||
:hook ((org-mode . turn-on-auto-fill))
|
:hook ((org-mode . (lambda ()
|
||||||
|
(setq fill-column 120)
|
||||||
|
(turn-on-auto-fill))))
|
||||||
:bind ( :map org-mode-map
|
:bind ( :map org-mode-map
|
||||||
("<remap> <imenu>" . consult-org-heading)
|
("<remap> <imenu>" . consult-org-heading)
|
||||||
("<remap> <org-goto>" . consult-org-heading))
|
("<remap> <org-goto>" . consult-org-heading))
|
||||||
|
|
Loading…
Reference in a new issue