mirror of
https://github.com/elkowar/dots-of-war.git
synced 2024-11-06 19:32:24 +00:00
70 lines
2.5 KiB
Fennel
70 lines
2.5 KiB
Fennel
(module plugins.lsp
|
|
{require {a aniseed.core
|
|
lsp lspconfig
|
|
lsp-configs lspconfig.configs
|
|
utils utils}
|
|
|
|
require-macros [macros]})
|
|
|
|
(fn on_attach [client bufnr]
|
|
(pkg lsp_signature.nvim [lsp_signature (require "lsp_signature")]
|
|
(lsp_signature.on_attach))
|
|
|
|
(if client.resolved_capabilities.document_highlight
|
|
(do
|
|
(utils.highlight "LspReferenceRead" {:gui "underline"})
|
|
(utils.highlight "LspReferenceText" {:gui "underline"})
|
|
(utils.highlight "LspReferenceWrite" {:gui "underline"})
|
|
(vim.api.nvim_exec
|
|
"augroup lsp_document_highlight
|
|
autocmd! * <buffer>
|
|
autocmd CursorHold <buffer> lua vim.lsp.buf.document_highlight()
|
|
autocmd CursorMoved <buffer> lua vim.lsp.buf.clear_references()
|
|
augroup END"
|
|
false))))
|
|
|
|
|
|
(fn better_root_pattern [patterns except-patterns]
|
|
"match path if one of the given patterns is matched, EXCEPT if one of the except-patterns is matched"
|
|
(fn [path]
|
|
(when (not ((lsp.util.root_pattern except-patterns) path))
|
|
((lsp.util.root_pattern patterns) path))))
|
|
|
|
|
|
|
|
(fn init-lsp [lsp-name ?opts]
|
|
"initialize a language server with defaults"
|
|
(let [merged-opts (a.merge {:on_attach on_attach} (or ?opts {}))]
|
|
((. lsp lsp-name :setup) merged-opts)))
|
|
|
|
|
|
(let [capabilities (vim.lsp.protocol.make_client_capabilities)]
|
|
(set capabilities.textDocument.completion.completionItem.snippetSupport true)
|
|
(set capabilities.textDocument.completion.completionItem.resolveSupport
|
|
{:properties ["documentation" "detail" "additionalTextEdits"]})
|
|
(lsp.rust_analyzer.setup
|
|
{:capabilities capabilities
|
|
:on_attach (fn [...]
|
|
(on_attach ...)
|
|
(pkg rust-tools.nvim [rust-tools (require "rust-tools")]
|
|
(rust-tools.setup { :tools { :inlay_hints { :show_parameter_hints false}}})))}))
|
|
|
|
(init-lsp :tsserver {:root_dir (lsp.util.root_pattern "package.json")})
|
|
(init-lsp :jsonls {:commands {:Format [ #(vim.lsp.buf.range_formatting [] [0 0] [(vim.fn.line "$") 0])]}})
|
|
(init-lsp :denols {:root_dir (better_root_pattern [".git"] ["package.json"])})
|
|
(init-lsp :hls {:settings {:languageServerHaskell {:formattingProvider "stylish-haskell"}}})
|
|
(init-lsp :ocamllsp)
|
|
(init-lsp :vimls)
|
|
(init-lsp :bashls)
|
|
(init-lsp :erlangls)
|
|
(init-lsp :yamlls)
|
|
(init-lsp :html)
|
|
(init-lsp :cssls)
|
|
|
|
|
|
;(lsp.vimls.setup { :on_attach on_attach})
|
|
|
|
(set vim.o.signcolumn "yes")
|
|
|
|
|
|
; vim:foldmarker=<<<<<,>>>>>
|