Delete all jit-lock-debug-mode hooks for speed on MacOS; Handle case when org does not load
This commit is contained in:
parent
275060d707
commit
81eb2a12eb
|
@ -7,6 +7,9 @@
|
||||||
(spacemacs|do-after-display-system-init (spacemacs/set-default-font dotspacemacs-default-font))
|
(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
|
;; whitespace mode
|
||||||
(spacemacs/toggle-whitespace-globally-on)
|
(spacemacs/toggle-whitespace-globally-on)
|
||||||
|
|
||||||
|
@ -72,7 +75,9 @@
|
||||||
(highlight-doxygen-global-mode 1)
|
(highlight-doxygen-global-mode 1)
|
||||||
|
|
||||||
;; Org mode
|
;; 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
|
;; Spellchecking
|
||||||
(setq ispell-dictionary "english")
|
(setq ispell-dictionary "english")
|
||||||
|
|
Loading…
Reference in New Issue