1
Fork 0
satellite/dotfiles/neovim/lua/my/plugins/lspconfig.lua

113 lines
4.3 KiB
Lua
Raw Normal View History

2022-02-01 00:06:48 +01:00
local cmd = vim.cmd
2022-01-31 21:41:13 +01:00
local M = {}
2022-02-01 00:06:48 +01:00
-- Command for formatting lua code
local formatLua = "lua-format -i --no-keep-simple-function-one-line --no-break-after-operator --column-limit=150 --break-after-table-lb"
2022-01-31 21:41:13 +01:00
-- Use a loop to conveniently call 'setup' on multiple servers and
-- map buffer local keybindings when the language server attaches
2022-02-01 00:06:48 +01:00
local servers = {
tsserver = {settings = {}, cmd = nil},
sumneko_lua = {
settings = {
Lua = {
runtime = {
-- Tell the language server which version of Lua you're using (most likely LuaJIT in the case of Neovim)
version = 'LuaJIT',
-- Setup your lua path
path = runtime_path
},
diagnostics = {
-- Get the language server to recognize the `vim` global
globals = {'vim'}
},
workspace = {
-- Make the server aware of Neovim runtime files
library = vim.api.nvim_get_runtime_file("", true)
},
-- Do not send telemetry data containing a randomized but unique identifier
telemetry = {enable = false}
}
},
cmd = {"lua-language-server"}
},
purescriptls = {
settings = {purescript = {censorWarnings = {"UnusedName", "ShadowedName", "UserDefinedWarning"}, formatter = "purs-tidy"}},
cmd = nil
},
rnix = {settings = {}, cmd = nil}
}
2022-01-31 21:41:13 +01:00
2022-02-01 00:06:48 +01:00
local function map(buf, mode, lhs, rhs, opts)
local options = {noremap = true, silent = true}
if opts then options = vim.tbl_extend('force', options, opts) end
vim.api.nvim_buf_set_keymap(buf, mode, lhs, rhs, options)
2022-01-31 21:41:13 +01:00
end
2022-02-01 00:06:48 +01:00
local function on_attach(client, bufnr)
2022-01-31 21:41:13 +01:00
-- Enable completion triggered by <c-x><c-o>
vim.api.nvim_buf_set_option(bufnr, 'omnifunc', 'v:lua.vim.lsp.omnifunc')
-- Go to declaration / definition / implementation
map(bufnr, "n", 'gD', '<cmd>lua vim.lsp.buf.declaration()<CR>')
map(bufnr, "n", 'gd', '<cmd>lua vim.lsp.buf.definition()<CR>')
map(bufnr, 'n', 'gi', '<cmd>lua vim.lsp.buf.implementation()<CR>')
-- Hover
map(bufnr, 'n', 'K', '<cmd>lua vim.lsp.buf.hover()<CR>')
map(bufnr, 'n', '<C-k>', '<cmd>lua vim.lsp.buf.signature_help()<CR>')
-- Workspace stuff
map(bufnr, 'n', '<space>wa', '<cmd>lua vim.lsp.buf.add_workspace_folder()<CR>')
map(bufnr, 'n', '<space>wr', '<cmd>lua vim.lsp.buf.remove_workspace_folder()<CR>')
map(bufnr, 'n', '<space>wl', '<cmd>lua print(vim.inspect(vim.lsp.buf.list_workspace_folders()))<CR>')
-- Code actions
map(bufnr, 'n', '<space>D', '<cmd>lua vim.lsp.buf.type_definition()<CR>')
map(bufnr, 'n', '<space>rn', '<cmd>lua vim.lsp.buf.rename()<CR>')
map(bufnr, 'n', '<space>ca', '<cmd>lua vim.lsp.buf.code_action()<CR>')
map(bufnr, 'n', 'gr', '<cmd>lua vim.lsp.buf.references()<CR>')
map(bufnr, 'n', '<space>f', '<cmd>lua vim.lsp.buf.formatting()<CR>')
end
function M.setup()
2022-02-01 00:06:48 +01:00
-- Setup basic language servers
for lsp, details in pairs(servers) do
2022-01-31 21:41:13 +01:00
require('lspconfig')[lsp].setup {
on_attach = on_attach,
2022-02-01 00:06:48 +01:00
settings = details.settings, -- Specific per-language settings
2022-01-31 21:41:13 +01:00
flags = {
2022-02-01 00:06:48 +01:00
debounce_text_changes = 150 -- This will be the default in neovim 0.7+
},
cmd = details.cmd
2022-01-31 21:41:13 +01:00
}
end
2022-02-01 00:06:48 +01:00
2022-02-01 14:28:29 +01:00
local efmLanguages = {
typescript = {
formatCommand = 'prettierd "${INPUT}"',
formatStdin = true,
env = {string.format('PRETTIERD_DEFAULT_CONFIG=%s', vim.fn.expand('~/.config/nvim/utils/linter-config/.prettierrc.json'))}
},
lua = {{formatCommand = formatLua, formatStdin = true}}
}
2022-02-01 00:06:48 +01:00
-- Setup auto-formatting
require"lspconfig".efm.setup {
init_options = {documentFormatting = true},
2022-02-01 14:28:29 +01:00
filetypes = {"lua", "ts", "js", "tsx", "jsx"},
settings = {rootMarkers = {".git/"}, languages = efmLanguages}
2022-02-01 00:06:48 +01:00
}
2022-02-01 14:28:29 +01:00
local autoFormatOn = {lua = 100, purs = 1000, nix = 100, js = 100, ts = 100, tsx = 100, jsx = 100}
-- Auto format
for extension, timeout in pairs(autoFormatOn) do
-- I wonder if this could be done in a single glob pattern
cmd("autocmd BufWritePre *." .. extension .. " lua vim.lsp.buf.formatting_sync(nil, " .. timeout .. ")")
end
2022-01-31 21:41:13 +01:00
end
2022-02-01 00:06:48 +01:00
return M