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:
parent
2e74af0b09
commit
3c8dc5df40
|
@ -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
|
;; Let quote and verse blocks use variable-pitch font, if configured
|
||||||
(set-face-attribute 'org-quote nil :inherit 'variable-pitch)
|
(set-face-attribute 'org-quote nil :inherit 'variable-pitch)
|
||||||
(set-face-attribute 'org-verse 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
|
;; Enable auto-fill in org-mode buffers
|
||||||
(add-hook 'org-mode-hook #'turn-on-auto-fill)
|
(add-hook 'org-mode-hook #'turn-on-auto-fill)
|
||||||
;; Freeze org-table header row when scrolling past
|
;; Visually indent org-mode files to a given header level
|
||||||
(add-hook 'org-mode-hook #'(lambda () (org-table-header-line-mode +1))))
|
(require 'org-indent)
|
||||||
|
(add-hook 'org-mode-hook #'(lambda () (org-indent-mode +1))))
|
||||||
#+end_src
|
#+end_src
|
||||||
|
|
||||||
* Keymaps
|
* Keymaps
|
||||||
|
|
Loading…
Reference in a new issue