summaryrefslogtreecommitdiff
path: root/lua/config
diff options
context:
space:
mode:
Diffstat (limited to 'lua/config')
-rw-r--r--lua/config/lsp.lua2
-rw-r--r--lua/config/treesitter.lua4
2 files changed, 6 insertions, 0 deletions
diff --git a/lua/config/lsp.lua b/lua/config/lsp.lua
index 5d7aa3e..880a664 100644
--- a/lua/config/lsp.lua
+++ b/lua/config/lsp.lua
@@ -54,6 +54,8 @@ return function()
hls = {}, -- Haskell
jdtls = {}, -- Java
asm_lsp = {}, -- Assembly (if you install it)
+ clojure_lsp = {}, -- Clojure
+ racket_langserver = {}, -- Racket (Scheme dialect)
}
for name, cfg in pairs(servers) do
diff --git a/lua/config/treesitter.lua b/lua/config/treesitter.lua
index 897f758..5eafd23 100644
--- a/lua/config/treesitter.lua
+++ b/lua/config/treesitter.lua
@@ -14,6 +14,10 @@ return function()
"cpp",
"rust",
"haskell",
+ "commonlisp",
+ "scheme",
+ "clojure",
+ "fennel",
},
sync_install = false,
auto_install = true,