fix: update LSP configuration

Changes:

- fix: replace on_attach and custom_attach with autocommand for LspAttach
  as recommended by the official documentation.
- fix: enable inlay hints for gopls.
- fix: add a keymap to toggle inlay hints for supported versions of
  neovim.
- fix: customise the NormalFloat background colour.
- fix: add LSP configuration for the Lua Language Server.

- refactor: move the lint autocommand to lint.lua
This commit is contained in:
Dan Anglin 2023-09-23 13:10:38 +01:00
parent 6b640b96f7
commit f2aa4651fa
Signed by: dananglin
GPG key ID: 0C1D44CFBEE68638
4 changed files with 101 additions and 77 deletions

View file

@ -4,15 +4,3 @@ vim.api.nvim_create_autocmd('BufWritePre', {
vim.lsp.buf.code_action({ context = { only = { 'source.organizeImports' } }, apply = true })
end
})
vim.api.nvim_create_autocmd('BufWritePost', {
callback = function()
local ok, lint = pcall(require, "lint")
if not ok then
return
end
lint.try_lint()
end
})

View file

@ -9,3 +9,15 @@ lint.linters_by_ft = {
sh = {'shellcheck'},
python = {'pylint'},
}
vim.api.nvim_create_autocmd('BufWritePost', {
callback = function()
local ok, lint = pcall(require, "lint")
if not ok then
return
end
lint.try_lint()
end
})

View file

@ -1,39 +1,55 @@
local ok, lspconfig = pcall(require, "lspconfig")
if not ok then
return
end
local ok, util = pcall(require, "lspconfig/util")
if not ok then
return
end
local log_directory = vim.env.LOG_HOME
if log_directory == nil then
log_directory = "/tmp"
end
if not ok then
return
end
vim.api.nvim_create_autocmd('LspAttach', {
group = vim.api.nvim_create_augroup('UserLspConfig', {}),
callback = function(ev)
-- Enable completion triggered by <c-x><c-o>
vim.bo[ev.buf].omnifunc = 'v:lua.vim.lsp.omnifunc'
local custom_attach = function(_, bufnr)
local opts = { noremap=true, silent=true, buffer=bufnr }
-- Buffer local mappings.
-- See `:help vim.lsp.*` for documentation on any of the below functions
-- See `:help vim.diagnostic.*` for documentation on any of the diagnostics functions
local opts = { noremap=true, silent=true, buffer=ev.buf }
-- Enable completion triggered by <c-x><c-o>
vim.api.nvim_buf_set_option(bufnr, 'omnifunc', 'v:lua.vim.lsp.omnifunc')
vim.keymap.set('n', '<leader>h', vim.lsp.buf.hover, opts)
vim.keymap.set('n', '<leader>gd', vim.lsp.buf.definition, opts)
vim.keymap.set('n', '<leader>gr', vim.lsp.buf.references, opts)
vim.keymap.set('n', '<leader>gi', vim.lsp.buf.implementation, opts)
vim.keymap.set('n', '<leader>dl', vim.diagnostic.setloclist, opts)
vim.keymap.set('n', '<leader>dn', vim.diagnostic.goto_next, opts)
vim.keymap.set('n', '<leader>dp', vim.diagnostic.goto_prev, opts)
vim.keymap.set('n', '<leader>gt', vim.lsp.buf.type_definition, opts)
vim.keymap.set('n', '<leader>rn', vim.lsp.buf.rename, opts)
vim.keymap.set("n", '<leader>ff', function() vim.lsp.buf.format{ async = true } end, opts)
vim.keymap.set('n', '<leader>ca', vim.lsp.buf.code_action, opts)
vim.keymap.set('n', '<leader>dec', vim.lsp.buf.declaration, opts)
-- See `:help vim.diagnostic.*` for documentation on any of the diagnostics functions
vim.keymap.set('n', '<leader>h', vim.lsp.buf.hover, opts)
vim.keymap.set('n', '<leader>gd', vim.lsp.buf.definition, opts)
vim.keymap.set('n', '<leader>gr', vim.lsp.buf.references, opts)
vim.keymap.set('n', '<leader>gi', vim.lsp.buf.implementation, opts)
vim.keymap.set('n', '<leader>dl', vim.diagnostic.setloclist, opts)
vim.keymap.set('n', '<leader>dn', vim.diagnostic.goto_next, opts)
vim.keymap.set('n', '<leader>dp', vim.diagnostic.goto_prev, opts)
vim.keymap.set('n', '<leader>gt', vim.lsp.buf.type_definition, opts)
vim.keymap.set('n', '<leader>rn', vim.lsp.buf.rename, opts)
vim.keymap.set("n", '<leader>ff', function() vim.lsp.buf.format{ async = true } end, opts)
vim.keymap.set('n', '<leader>ca', vim.lsp.buf.code_action, opts)
vim.keymap.set('n', '<leader>dec', vim.lsp.buf.declaration, opts)
--buf_set_keymap('n', '<C-k>', vim.lsp.buf.signature_help, opts)
--buf_set_keymap('n', '<space>wa', vim.lsp.buf.add_workspace_folder, opts)
--buf_set_keymap('n', '<space>wr', vim.lsp.buf.remove_workspace_folder, opts)
--buf_set_keymap('n', '<space>wl', function() print(vim.inspect(vim.lsp.buf.list_workspace_folders())) end', opts)
end
if vim.lsp.inlay_hint then
vim.keymap.set('n', '<leader>ih', function() vim.lsp.inlay_hint(0, nil) end, opts)
end
--vim.keymap.set('n', '<C-k>', vim.lsp.buf.signature_help, opts)
--vim.keymap.set('n', '<space>wa', vim.lsp.buf.add_workspace_folder, opts)
--vim.keymap.set('n', '<space>wr', vim.lsp.buf.remove_workspace_folder, opts)
--vim.keymap.set('n', '<space>wl', function() print(vim.inspect(vim.lsp.buf.list_workspace_folders())) end', opts)
end,
})
local lsp_flags = {
debounce_text_changes = 150,
@ -41,23 +57,28 @@ local lsp_flags = {
-- Go
lspconfig.gopls.setup{
on_attach = custom_attach,
cmd = {"gopls", "serve", "-logfile="..log_directory.."/gopls.log"},
filetypes = {"go", "gomod"},
root_dir = util.root_pattern("go.work", "go.mod", ".git"),
settings = {
gopls = {
analyses = {
unusedparams = true,
useany = true,
},
env = {
GOFLAGS = "-tags=mage"
GOFLAGS = "-tags=mage",
},
gofumpt = true,
hints = {
parameterNames = true,
constantValues = true,
compositeLiteralFields = true,
assignVariableTypes = true,
},
staticcheck = true,
},
init_options = {
vulncheck = "Imports",
usePlaceholders = true,
completeUnimported = true,
hoverKind = "FullDocumentation",
},
},
flags = lsp_flags,
@ -65,14 +86,12 @@ lspconfig.gopls.setup{
-- Jsonnet
lspconfig.jsonnet_ls.setup{
on_attach = custom_attach,
cmd = {"jsonnet-language-server", "--lint"},
flags = lsp_flags,
}
-- Terraform
lspconfig.terraformls.setup{
on_attach = custom_attach,
cmd = {"terraform-ls", "serve", "-log-file="..log_directory.."/terraformls.log"},
filetypes = {"terraform", "hcl", "tf"},
root_dir = lspconfig.util.root_pattern{".terraform", ".git", "main.tf"},
@ -81,40 +100,40 @@ lspconfig.terraformls.setup{
-- Python
lspconfig.pylsp.setup{
on_attach = custom_attach,
cmd = { "pylsp" },
filetypes = { "python" },
flags = lsp_flags,
}
-- Lua
--local sumneko_root_path = vim.fn.expand('$HOME') .. "/Git/github.com/sumneko/lua-language-server"
--local sumneko_binary = sumneko_root_path .. "/bin/Linux/lua-language-server"
--
--lspconfig.sumneko_lua.setup {
-- on_attach = custom_attach,
-- cmd = {sumneko_binary, "-E", sumneko_root_path .. "/main.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 = vim.split(package.path, ';')
-- },
-- diagnostics = {
-- -- Get the language server to recognize the vim and awesome globals
-- globals = {'vim', 'awesome'}
-- },
-- workspace = {
-- -- Make the server aware of Neovim runtime files
-- library = vim.api.nvim_get_runtime_file("", true),
-- },
-- telemetry = {
-- -- Do not send telemetry data containing a randomized but unique identifier
-- enable = false,
-- },
-- }
-- },
-- flags = lsp_flags,
--}
lspconfig.lua_ls.setup {
on_init = function(client)
local path = client.workspace_folders[1].name
if not vim.loop.fs_stat(path..'/.luarc.json') and not vim.loop.fs_stat(path..'/.luarc.jsonc') then
client.config.settings = vim.tbl_deep_extend('force', client.config.settings, {
Lua = {
runtime = {
-- Tell the language server which version of Lua you're using
-- (most likely LuaJIT in the case of Neovim)
version = 'LuaJIT'
},
-- Make the server aware of Neovim runtime files
workspace = {
checkThirdParty = false,
library = {
vim.env.VIMRUNTIME
-- "${3rd}/luv/library"
-- "${3rd}/busted/library",
}
-- or pull in all of 'runtimepath'. NOTE: this is a lot slower
-- library = vim.api.nvim_get_runtime_file("", true)
}
}
})
client.notify("workspace/didChangeConfiguration", { settings = client.config.settings })
end
return true
end,
flags = lsp_flags,
}

View file

@ -6,6 +6,11 @@ end
tokyonight.setup {
style = "night",
sidebars = {"packer", "terminal"},
sidebars = {"terminal"},
dim_inactive = true,
on_highlights = function(hl, c)
hl.NormalFloat = {
bg = "#394b70",
}
end,
}