nvim-config/lua/configs/lspconfig.lua

163 lines
5.3 KiB
Lua
Raw Normal View History

2022-03-01 02:58:43 +00:00
local M = {}
function M.config()
local signs = {
{ name = "DiagnosticSignError", text = "" },
{ name = "DiagnosticSignWarn", text = "" },
{ name = "DiagnosticSignHint", text = "" },
{ name = "DiagnosticSignInfo", text = "" },
}
for _, sign in ipairs(signs) do
vim.fn.sign_define(sign.name, { texthl = sign.name, text = sign.text, numhl = "" })
end
local config = {
virtual_text = false,
signs = {
active = signs,
},
update_in_insert = true,
underline = true,
severity_sort = true,
float = {
focusable = false,
style = "minimal",
border = "rounded",
source = "always",
header = "",
prefix = "",
},
}
vim.diagnostic.config(config)
vim.lsp.handlers["textDocument/hover"] = vim.lsp.with(vim.lsp.handlers.hover, {
border = "rounded",
})
vim.lsp.handlers["textDocument/signatureHelp"] = vim.lsp.with(vim.lsp.handlers.signature_help, {
border = "rounded",
})
vim.lsp.handlers["textDocument/publishDiagnostics"] = vim.lsp.with(vim.lsp.diagnostic.on_publish_diagnostics, {
virtual_text = false,
})
local status_ok, lspconfig = pcall(require, "lspconfig")
if not status_ok then
2022-03-01 02:58:43 +00:00
return
end
-- Highlight under current selection
-- local function lsp_highlight_document(client)
-- if client.resolved_capabilities.document_highlight then
-- 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
-- )
-- end
-- end
2022-03-01 02:58:43 +00:00
local function lsp_keymaps(bufnr)
local opts = { noremap = true, silent = true }
2022-05-01 17:43:11 +00:00
vim.api.nvim_buf_set_keymap(bufnr, "n", "K", "<cmd>lua vim.lsp.buf.hover()<CR>", opts)
vim.api.nvim_buf_set_keymap(bufnr, "n", "gl", "<cmd>lua vim.diagnostic.open_float({ source = false, prefix = function(d, i, ttl) return string.rep(' ', #tostring(ttl) - #tostring(i)) .. tostring(i) .. ': ', nil end })<CR>", opts)
2022-03-01 02:58:43 +00:00
vim.api.nvim_buf_set_keymap(bufnr, "n", "gD", "<cmd>lua vim.lsp.buf.declaration()<CR>", opts)
vim.api.nvim_buf_set_keymap(bufnr, "n", "gd", "<cmd>lua vim.lsp.buf.definition()<CR>", opts)
vim.api.nvim_buf_set_keymap(bufnr, "n", "gi", "<cmd>lua vim.lsp.buf.implementation()<CR>", opts)
vim.api.nvim_buf_set_keymap(bufnr, "n", "go", "<cmd>lua vim.diagnostic.open_float()<CR>", opts)
vim.api.nvim_buf_set_keymap(bufnr, "n", "[d", '<cmd>lua vim.diagnostic.goto_prev({ border = "rounded" })<CR>', opts)
vim.api.nvim_buf_set_keymap(bufnr, "n", "]d", '<cmd>lua vim.diagnostic.goto_next({ border = "rounded" })<CR>', opts)
2022-03-01 06:25:44 +00:00
vim.api.nvim_buf_set_keymap(bufnr, "n", "<leader>ll", "<cmd>lua vim.diagnostic.setloclist()<CR>", opts)
vim.api.nvim_buf_set_keymap(bufnr, "n", "<leader>lf", "<cmd>lua vim.lsp.buf.formatting_sync()<CR>", opts)
--vim.cmd [[ command! Format execute 'lua vim.lsp.buf.formatting()' ]]
2022-03-01 02:58:43 +00:00
end
local on_attach = function(client, bufnr)
lsp_keymaps(bufnr)
end
2022-03-01 02:58:43 +00:00
2022-10-05 17:01:46 +00:00
local sumneko_root_path = '/home/peters/builds/lua-language-server'
local sumneko_binary = sumneko_root_path.."/bin/lua-language-server"
-- lua-language-server
-- pacman -S lua-language-server
lspconfig.sumneko_lua.setup {
2022-10-05 17:01:46 +00:00
cmd = { sumneko_binary, "-E", sumneko_root_path .. "/main.lua" },
on_attach = on_attach,
settings = {
Lua = {
format = {
enable = false
},
diagnostics = {
globals = { 'vim' },
},
2022-09-22 19:13:23 +00:00
workspace = {
library = {
-- include neovim runtime files
[vim.fn.expand('$VIMRUNTIME/lua')] = true,
[vim.fn.expand('$VIMRUNTIME/lua/vim/lsp')] = true,
},
checkThirdParty = false, -- disable "do you want to set up the workspace"
},
telemetry = {
enable = false,
}
},
},
}
2022-03-01 02:58:43 +00:00
2022-09-22 19:13:23 +00:00
-- TODO: python-language-server (pip install pylsp)
-- lspconfig.pylsp.setup {
-- -- cmd = { '/home/peters/.env38/bin/pylsp' },
-- on_attach = on_attach,
-- settings = {
-- pylsp = {
-- plugins = {
-- -- pylint = {
-- -- enabled = false,
-- -- },
-- }
-- }
-- }
-- }
-- pyright
-- pip install pyright
lspconfig.pyright.setup {
on_attach = on_attach,
-- settings = {
2022-10-27 00:40:15 +00:00
-- https://github.com/microsoft/pyright/blob/main/docs/settings.md
-- python = {
-- autoSearchPaths = true,
-- autoImportCompletion = true,
-- diagnosticMode = 'openFilesOnly', -- workspace | openFilesOnly
-- useLibraryCodeForTypes = true,
2022-10-27 00:40:15 +00:00
-- typeCheckingMode = '...' -- off | basic | strict
-- venvPath = '...'
-- }
-- }
}
-- vscode-json-language-server
-- npm i -g vscode-langservers-extracted
lspconfig.jsonls.setup {
on_attach = on_attach,
}
-- typescript-language-server
-- npm i -g typescript-language-server
lspconfig.tsserver.setup {
on_attach = on_attach,
}
2022-03-01 02:58:43 +00:00
end
return M