diff options
| author | bh <qn+git@excalibur.computer> | 2025-12-13 23:44:24 +0800 |
|---|---|---|
| committer | bh <qn+git@excalibur.computer> | 2025-12-13 23:44:24 +0800 |
| commit | ca8b1bd0a783244d60851445ba47aaa0f67cef19 (patch) | |
| tree | e9b2272ba217b3028e6e44bd62d878caa8367ce9 /lua/config | |
| parent | 5ea42a3593e1ee743a7d32ec66fcd9e5e8f12f63 (diff) | |
Added more plugins
Diffstat (limited to 'lua/config')
| -rw-r--r-- | lua/config/lsp.lua | 2 | ||||
| -rw-r--r-- | lua/config/treesitter.lua | 4 |
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, |
