Some speed optimizations

This commit is contained in:
Leni Ven 2023-01-11 11:59:10 -08:00
parent eb798b6a55
commit c01c180946
3 changed files with 16 additions and 15 deletions

View File

@ -1,4 +1,3 @@
"Initialization:
This function is called at the very beginning of Spacemacs startup,
before layer configuration.

View File

@ -38,11 +38,12 @@ This function should only modify configuration layer settings."
;; 3 Checker
(spell-checking :variables ;; Required: aspell
spell-checking-enable-by-default t)
spell-checking-enable-by-default nil)
syntax-checking
;; 4 Completion
auto-completion
helm
;helm ;; This is slow. Replace by ivy.
ivy
;; 6 Emacs
(org :variables
@ -55,7 +56,7 @@ This function should only modify configuration layer settings."
;; 7 File trees
treemacs
neotree
;neotree
;; 8 Fonts
unicode-fonts
@ -76,7 +77,6 @@ This function should only modify configuration layer settings."
csv
bibtex
(latex :variables
;latex-build-command 'latexmk
latex-enable-folding t
latex-enable-magic t
)
@ -145,12 +145,15 @@ This function should only modify configuration layer settings."
'(
all-the-icons
centaur-tabs
company-statistics
highlight-doxygen
smart-tabs-mode
tablist
exec-path-from-shell
mini-frame
company-statistics
exec-path-from-shell
cmake-ide
highlight-doxygen
)
;; A list of packages that cannot be updated.

View File

@ -1,5 +1,6 @@
;; Spacemacs itself
(exec-path-from-shell-initialize)
(spacemacs/enable-transparency)
;; Typing
(setq evil-indent-convert-tabs nil)
@ -52,8 +53,6 @@
(set-face-attribute 'font-lock-constant-face nil
:foreground "#ecbd3d")
(spacemacs/enable-transparency)
;; Org mode
(setq org-format-latex-options (plist-put org-format-latex-options :scale 2.0))