mirror of
https://github.com/elkowar/dots-of-war.git
synced 2024-11-06 11:22:23 +00:00
111 lines
3.6 KiB
Fennel
111 lines
3.6 KiB
Fennel
(module plugins.lsp
|
|
{require {a aniseed.core
|
|
fennel aniseed.fennel
|
|
nvim aniseed.nvim
|
|
lsp lspconfig
|
|
lsp-configs lspconfig.configs
|
|
saga lspsaga
|
|
utils utils
|
|
compe compe}
|
|
|
|
|
|
require-macros [macros]})
|
|
|
|
|
|
(fn on_attach [client bufnr]
|
|
(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))))
|
|
|
|
|
|
(local 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 { :on_attach on_attach
|
|
:capabilities capabilities})
|
|
(lsp.vimls.setup { :on_attach on_attach})
|
|
(lsp.tsserver.setup { :on_attach on_attach :root_dir (lsp.util.root_pattern "package.json")})
|
|
(lsp.bashls.setup { :on_attach on_attach })
|
|
(lsp.html.setup { :on_attach on_attach})
|
|
(lsp.denols.setup { :on_attach on_attach
|
|
:root_dir (better_root_pattern [".git"] ["package.json"])})
|
|
(lsp.hls.setup { :on_attach on_attach
|
|
:settings { :languageServerHaskell { :formattingProvider "stylish-haskell"}}})
|
|
|
|
|
|
(lsp.jsonls.setup
|
|
{ :on_attach on_attach
|
|
:commands { :Format [ (fn [] (vim.lsp.buf.range_formatting [] [0 0] [(vim.fn.line "$") 0]))]}})
|
|
|
|
|
|
|
|
|
|
(when (not lsp.erlangls)
|
|
(set lsp-configs.erlangls
|
|
{ :default_config
|
|
{ :cmd ["erlang_ls"]
|
|
:filetypes ["lua"]
|
|
:root_dir (lsp.util.root_pattern "rebar.config")
|
|
:settings {}}}))
|
|
(lsp.erlangls.setup {})
|
|
|
|
|
|
(compe.setup
|
|
{ :enabled true
|
|
:autocomplete false
|
|
:debug false
|
|
:min_length 1
|
|
:preselect "enable"
|
|
:throttle_time 80
|
|
:source_timeout 200
|
|
:incomplete_delay 400
|
|
:max_abbr_width 100
|
|
:max_kind_width 100
|
|
:max_menu_width 100
|
|
:documentation true
|
|
:source { :path true
|
|
:buffer true
|
|
:calc true
|
|
:nvim_lsp true
|
|
:nvim_lua true
|
|
:vsnip false}})
|
|
|
|
|
|
(saga.init_lsp_saga
|
|
{ :border_style 1
|
|
:code_action_keys { :quit "<esc>" :exec "<CR>"}
|
|
:rename_action_keys { :quit "<esc>" :exec "<CR>"}
|
|
:finder_action_keys { :quit "<esc>"
|
|
:open "<CR>"
|
|
:vsplit "v"
|
|
:split "b"
|
|
:scroll_up "<C-u>"
|
|
:scroll_down "<C-d>"}})
|
|
|
|
|
|
(utils.highlight "LspSagaCodeActionTitle" {:fg "#8ec07c"})
|
|
(utils.highlight "LspSagaBorderTitle" {:fg "#8ec07c"})
|
|
(utils.highlight "LspSagaCodeActionContent" {:fg "#8ec07c"})
|
|
(utils.highlight "LspSagaFinderSelection" {:fg "#8ec07c"})
|
|
(utils.highlight "LspSagaDiagnosticHeader" {:fg "#8ec07c"})
|
|
(utils.highlight "TargetWord" {:fg "#8ec07c"})
|
|
|
|
(set nvim.o.signcolumn "yes")
|