Remove org-table-header-line-mode hook

Was causing problems when starting org files for some reason, causing
other hooks to fail / not run too
This commit is contained in:
Evie Litherland-Smith 2024-04-02 14:29:39 +01:00
parent 2e74af0b09
commit 3c8dc5df40

View file

@ -49,12 +49,11 @@ For reference information, see [[https://orgmode.com][Org-mode website]]
;; Let quote and verse blocks use variable-pitch font, if configured
(set-face-attribute 'org-quote nil :inherit 'variable-pitch)
(set-face-attribute 'org-verse nil :inherit 'variable-pitch)
;; Visually indent org-mode files to a given header level
(add-hook 'org-mode-hook #'(lambda () (org-indent-mode +1)))
;; Enable auto-fill in org-mode buffers
(add-hook 'org-mode-hook #'turn-on-auto-fill)
;; Freeze org-table header row when scrolling past
(add-hook 'org-mode-hook #'(lambda () (org-table-header-line-mode +1))))
;; Visually indent org-mode files to a given header level
(require 'org-indent)
(add-hook 'org-mode-hook #'(lambda () (org-indent-mode +1))))
#+end_src
* Keymaps