blob: a2bd7141e7abf063e7862f4f02d82f35f9668590 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
;; TBD
(module config.lsp.mason-lspconfig {autoload {: util}})
(def- servers [:bashls
:clangd
:cssls
:dockerls
:html
:hls
:jsonls
:pyright
:rust_analyzer
:sumneko_lua
:sqls
:taplo
:terraformls
:texlab
:tflint
:yamlls
:zk])
(defn- handler-opts []
(let [handlers (require :config.lsp.handlers)]
{:on_attach handlers.on-attach :capabilities (handlers.capabilities)}))
(defn- jsonls-opts []
(let [jsonls-opts (require :config.lsp.settings.jsonls)]
(vim.tbl_deep_extend :force jsonls-opts (handler-opts))))
(defn- sumneko-lua-opts []
(let [sumneko-lua (require :config.lsp.settings.sumneko-lua)]
(vim.tbl_deep_extend :force sumneko-lua.opts (handler-opts))))
(defn- pyright-opts []
(let [pyright (require :config.lsp.settings.pyright)]
(vim.tbl_deep_extend :force pyright.opts (handler-opts))))
(defn- rust-opts []
(let [rust (require :config.lsp.settings.rust)]
(vim.tbl_deep_extend :force rust.opts (handler-opts))))
(defn- get-server-opts [server]
(match server
:jsonls (jsonls-opts)
:pyright (pyright-opts)
:sumneko_lua (sumneko-lua-opts)
:rust_analyzer (rust-opts)
_ (handler-opts)))
(def- opts {:ensure_installed servers :automatic_installation true})
(util.use-config :mason-lspconfig opts)
(let [lspconfig (util.load-plugin :lspconfig)]
(each [_ server (ipairs servers)]
(let [server-config (. lspconfig server)]
(server-config.setup (get-server-opts server)))))
|