Disable global-visual-line-mode, increase fill-column for org-mode to 120

This commit is contained in:
Evie Litherland-Smith 2025-02-10 16:33:17 +00:00
parent 990d8e52f7
commit 879a0afd63

View file

@ -42,7 +42,6 @@
(tool-bar-mode -1)
(scroll-bar-mode -1)
(global-so-long-mode +1)
(global-visual-line-mode +1)
(global-prettify-symbols-mode +1)
;; Some witchcraft to enable ligatures, from
@ -523,7 +522,9 @@
(use-package org
:demand
: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
("<remap> <imenu>" . consult-org-heading)
("<remap> <org-goto>" . consult-org-heading))