Remove Java layer and add javascript, HTML and Go layers
This commit is contained in:
parent
4b5f190e38
commit
d887f91368
|
@ -43,6 +43,7 @@ This function should only modify configuration layer settings."
|
||||||
(auto-completion :variables
|
(auto-completion :variables
|
||||||
auto-completion-return-key-behavior 'complete
|
auto-completion-return-key-behavior 'complete
|
||||||
auto-completion-tab-key-behavior 'cycle)
|
auto-completion-tab-key-behavior 'cycle)
|
||||||
|
syntax-checking
|
||||||
emacs-lisp
|
emacs-lisp
|
||||||
git
|
git
|
||||||
markdown
|
markdown
|
||||||
|
@ -53,7 +54,6 @@ This function should only modify configuration layer settings."
|
||||||
shell-default-position 'bottom
|
shell-default-position 'bottom
|
||||||
shell-default-shell 'eshell
|
shell-default-shell 'eshell
|
||||||
shell-enable-smart-eshell t)
|
shell-enable-smart-eshell t)
|
||||||
syntax-checking
|
|
||||||
(version-control :variables
|
(version-control :variables
|
||||||
version-control-diff-tool 'diff-hl
|
version-control-diff-tool 'diff-hl
|
||||||
version-control-diff-side 'left
|
version-control-diff-side 'left
|
||||||
|
@ -64,8 +64,8 @@ This function should only modify configuration layer settings."
|
||||||
(c-c++ :variables
|
(c-c++ :variables
|
||||||
c-c++-default-mode-for-headers 'c++-mode
|
c-c++-default-mode-for-headers 'c++-mode
|
||||||
c-c++-backend 'lsp-ccls)
|
c-c++-backend 'lsp-ccls)
|
||||||
(java :variables
|
;;(java :variables
|
||||||
java-backend 'lsp)
|
;;java-backend 'lsp)
|
||||||
shell-scripts
|
shell-scripts
|
||||||
spacemacs-layouts
|
spacemacs-layouts
|
||||||
dap
|
dap
|
||||||
|
@ -83,6 +83,13 @@ This function should only modify configuration layer settings."
|
||||||
pdf
|
pdf
|
||||||
(plantuml :variables
|
(plantuml :variables
|
||||||
org-plantuml-jar-path "~/Documents/Uni/DDSI/Code/PlantUML/plantuml.jar")
|
org-plantuml-jar-path "~/Documents/Uni/DDSI/Code/PlantUML/plantuml.jar")
|
||||||
|
major-modes
|
||||||
|
javascript
|
||||||
|
html
|
||||||
|
(go :variables
|
||||||
|
go-backend 'lsp
|
||||||
|
go-tab-width 4
|
||||||
|
go-format-before-save t)
|
||||||
)
|
)
|
||||||
|
|
||||||
;; List of additional packages that will be installed without being
|
;; List of additional packages that will be installed without being
|
||||||
|
|
Loading…
Reference in New Issue