.spacemacs: reorder config layers, add comments
This commit is contained in:
parent
ee3a84507f
commit
cf9dc39933
|
@ -32,8 +32,7 @@ This function should only modify configuration layer settings."
|
||||||
|
|
||||||
;; List of configuration layers to load.
|
;; List of configuration layers to load.
|
||||||
dotspacemacs-configuration-layers
|
dotspacemacs-configuration-layers
|
||||||
'(javascript
|
'(
|
||||||
systemd
|
|
||||||
;; ----------------------------------------------------------------
|
;; ----------------------------------------------------------------
|
||||||
;; Example of useful layers you may want to use right away.
|
;; Example of useful layers you may want to use right away.
|
||||||
;; Uncomment some layer names and press `SPC f e R' (Vim style) or
|
;; Uncomment some layer names and press `SPC f e R' (Vim style) or
|
||||||
|
@ -49,26 +48,32 @@ This function should only modify configuration layer settings."
|
||||||
graphviz
|
graphviz
|
||||||
helm
|
helm
|
||||||
html
|
html
|
||||||
|
javascript
|
||||||
latex
|
latex
|
||||||
|
;; https://github.com/emacs-lsp/lsp-mode
|
||||||
(lsp :variables
|
(lsp :variables
|
||||||
lsp-rust-server
|
lsp-rust-server
|
||||||
'rust-analyzer)
|
'rust-analyzer)
|
||||||
markdown
|
markdown
|
||||||
|
;; https://www.spacemacs.org/layers/+emacs/org/README.html
|
||||||
(org :variables
|
(org :variables
|
||||||
org-enable-roam-support t
|
org-enable-roam-support t
|
||||||
org-enable-roam-ui t)
|
org-enable-roam-ui t)
|
||||||
plantuml
|
plantuml
|
||||||
(python :variables python-backend 'lsp python-lsp-server 'mspyls)
|
(python :variables python-backend 'lsp python-lsp-server 'mspyls)
|
||||||
|
;; https://develop.spacemacs.org/layers/+lang/rust/README.html
|
||||||
(rust :variables rust-backend 'lsp)
|
(rust :variables rust-backend 'lsp)
|
||||||
shell
|
shell
|
||||||
;; shell-scripts
|
;; shell-scripts
|
||||||
;; spell-checking
|
;; spell-checking
|
||||||
syntax-checking
|
syntax-checking
|
||||||
|
systemd
|
||||||
(tree-sitter :variables
|
(tree-sitter :variables
|
||||||
spacemacs-tree-sitter-hl-black-list '(js-mode js2-mode)
|
spacemacs-tree-sitter-hl-black-list '(js-mode js2-mode)
|
||||||
tree-sitter-syntax-highlight-enable t
|
tree-sitter-syntax-highlight-enable t
|
||||||
tree-sitter-fold-enable t
|
tree-sitter-fold-enable t
|
||||||
tree-sitter-fold-indicators-enable t)
|
tree-sitter-fold-indicators-enable t)
|
||||||
|
(typescript-mode (typescript-backend . lsp))
|
||||||
version-control
|
version-control
|
||||||
yaml
|
yaml
|
||||||
;; (shell :variables
|
;; (shell :variables
|
||||||
|
|
Loading…
Reference in New Issue