Delete all jit-lock-debug-mode hooks for speed on MacOS; Handle case when org does not load

This commit is contained in:
Leni Ven 2023-01-17 23:28:07 -08:00
parent 275060d707
commit 81eb2a12eb
1 changed files with 6 additions and 1 deletions

View File

@ -7,6 +7,9 @@
(spacemacs|do-after-display-system-init (spacemacs/set-default-font dotspacemacs-default-font))
;; Turn off auto mode
(rassq-delete-all 'jit-lock-debug-mode auto-mode-alist)
;; whitespace mode
(spacemacs/toggle-whitespace-globally-on)
@ -72,7 +75,9 @@
(highlight-doxygen-global-mode 1)
;; Org mode
(setq org-format-latex-options (plist-put org-format-latex-options :scale 2.0))
(if (boundp 'org-format-latex-options)
(setq org-format-latex-options (plist-put org-format-latex-options
:scale 2.0)))
;; Spellchecking
(setq ispell-dictionary "english")