summaryrefslogtreecommitdiff
path: root/fnl/plugins/lsp/servers.fnl
blob: 2403c1adde10341ed59331159e85ee5d2fe0f01f (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
;; List of lsp that should be automatically installed and supported.

{:bashls {}
 :clangd {}
 :cssls {}
 :dockerls {}
 :hls {}
 :html {}
 :jsonls {:init_options {:providerFormatter false}
          :settings {:json {:schemas (let [schemastore (require :schemastore)]
                                       (schemastore.json.schemas))}}
          :setup {:commands {:Format [(fn []
                                        (vim.lsp.buf.range_formatting [] [0 0]
                                                                      [(vim.fn.line "$"
                                                                                    0)]))]}}}
 :pyright {}
 :rust_analyzer {:settings {:rust-analyzer {:lens {:enable true}
                                            :checkOnSave {:command :clippy}}}}
 :sqls {}
 :sumneko_lua {:settings {:Lua {:completion {:callSnippet :Replace}
                                :workspace {:checkThirdParty false}
                                :runtime {:version :LuaJIT
                                          :path (vim.split package.path ";")}}}}
 :taplo {}
 :terraformls {}
 :texlab {}
 :tflint {}
 :yamlls {}
 :zk {}}