neovim-config/lua/nvim-lspconfig.lua

117 lines
4.3 KiB
Lua
Raw Normal View History

2021-04-02 05:36:20 +00:00
function on_attach(client)
2021-05-11 03:42:49 +00:00
local function buf_set_keymap(...)
2021-04-02 05:36:20 +00:00
vim.api.nvim_buf_set_keymap(bufnr, ...)
end
local function buf_set_option(...)
vim.api.nvim_buf_set_option(bufnr, ...)
end
2021-03-31 09:38:29 +00:00
2021-04-02 05:36:20 +00:00
buf_set_option("omnifunc", "v:lua.vim.lsp.omnifunc")
2021-03-31 09:38:29 +00:00
2021-04-02 05:36:20 +00:00
-- Mappings.
2021-05-11 03:42:49 +00:00
local opts = {noremap = true, silent = true}
buf_set_keymap("n", "gD", "<Cmd>lua vim.lsp.buf.declaration()<CR>", opts)
buf_set_keymap("n", "gd", "<Cmd>lua vim.lsp.buf.definition()<CR>", opts)
buf_set_keymap("n", "K", "<Cmd>lua vim.lsp.buf.hover()<CR>", opts)
buf_set_keymap("n", "gi", "<cmd>lua vim.lsp.buf.implementation()<CR>", opts)
buf_set_keymap("n", "<C-k>", "<cmd>lua vim.lsp.buf.signature_help()<CR>", opts)
buf_set_keymap("n", "<space>wa", "<cmd>lua vim.lsp.buf.add_workspace_folder()<CR>", opts)
buf_set_keymap("n", "<space>wr", "<cmd>lua vim.lsp.buf.remove_workspace_folder()<CR>", opts)
buf_set_keymap("n", "<space>wl", "<cmd>lua print(vim.inspect(vim.lsp.buf.list_workspace_folders()))<CR>", opts)
buf_set_keymap("n", "<space>D", "<cmd>lua vim.lsp.buf.type_definition()<CR>", opts)
buf_set_keymap("n", "<space>rn", "<cmd>lua vim.lsp.buf.rename()<CR>", opts)
buf_set_keymap("n", "gr", "<cmd>lua vim.lsp.buf.references()<CR>", opts)
buf_set_keymap("n", "<space>e", "<cmd>lua vim.lsp.diagnostic.show_line_diagnostics()<CR>", opts)
buf_set_keymap("n", "[d", "<cmd>lua vim.lsp.diagnostic.goto_prev()<CR>", opts)
buf_set_keymap("n", "]d", "<cmd>lua vim.lsp.diagnostic.goto_next()<CR>", opts)
buf_set_keymap("n", "<space>q", "<cmd>lua vim.lsp.diagnostic.set_loclist()<CR>", opts)
2021-03-31 09:38:29 +00:00
2021-04-02 05:36:20 +00:00
-- Set some keybinds conditional on server capabilities
if client.resolved_capabilities.document_formatting then
2021-05-11 03:42:49 +00:00
buf_set_keymap("n", "<space>f", "<cmd>lua vim.lsp.buf.formatting()<CR>", opts)
2021-04-02 05:36:20 +00:00
elseif client.resolved_capabilities.document_range_formatting then
2021-05-11 03:42:49 +00:00
buf_set_keymap("n", "<space>f", "<cmd>lua vim.lsp.buf.range_formatting()<CR>", opts)
2021-04-02 05:36:20 +00:00
end
end
2021-03-31 09:38:29 +00:00
2021-05-11 03:42:49 +00:00
local lspconf = require("lspconfig")
-- these langs require same lspconfig so put em all in a table and loop through!
2021-06-01 13:22:24 +00:00
local lspservers = {"html", "cssls", "tsserver", "pyright", "bashls", "clangd", "ccls", "gopls"}
2021-04-17 17:32:16 +00:00
2021-06-01 13:22:24 +00:00
for _, lang in ipairs(lspservers) do
lspconf[lang].setup {
on_attach = on_attach,
root_dir = vim.loop.cwd
}
end
2021-04-18 05:57:06 +00:00
2021-05-11 03:42:49 +00:00
-- vls conf example
local vls_binary = "/usr/local/bin/vls"
lspconf.vls.setup {
cmd = {vls_binary}
2021-05-06 17:04:12 +00:00
}
2021-04-18 05:57:06 +00:00
-- lua lsp settings
USER = "/home/" .. vim.fn.expand("$USER")
local sumneko_root_path = USER .. "/.config/lua-language-server"
local sumneko_binary = USER .. "/.config/lua-language-server/bin/Linux/lua-language-server"
2021-06-01 13:22:24 +00:00
local lsp_installer = require'nvim-lsp-installer'
function common_on_attach(client, bufnr)
-- setup buffer keymaps etc.
end
local installed_servers = lsp_installer.get_installed_servers()
for _, server in pairs(installed_servers) do
opts = {
on_attach = common_on_attach,
}
-- (optional) Customize the options passed to the server
-- if server.name == "tsserver" then
-- opts.root_dir = function() ... end
-- end
server:setup(opts)
end
2021-05-11 03:42:49 +00:00
lspconf.sumneko_lua.setup {
2021-04-18 05:57:06 +00:00
cmd = {sumneko_binary, "-E", sumneko_root_path .. "/main.lua"},
2021-04-18 06:13:10 +00:00
root_dir = function()
return vim.loop.cwd()
end,
2021-04-18 05:57:06 +00:00
settings = {
Lua = {
runtime = {
version = "LuaJIT",
path = vim.split(package.path, ";")
},
diagnostics = {
globals = {"vim"}
},
workspace = {
2021-04-22 17:43:06 +00:00
library = {
[vim.fn.expand("$VIMRUNTIME/lua")] = true,
[vim.fn.expand("$VIMRUNTIME/lua/vim/lsp")] = true
}
2021-04-18 06:13:10 +00:00
},
telemetry = {
enable = false
2021-04-18 05:57:06 +00:00
}
}
2021-04-18 06:13:10 +00:00
}
2021-04-18 05:57:06 +00:00
}
-- replace the default lsp diagnostic letters with prettier symbols
2021-05-05 01:50:42 +00:00
vim.fn.sign_define("LspDiagnosticsSignError", {text = "", numhl = "LspDiagnosticsDefaultError"})
vim.fn.sign_define("LspDiagnosticsSignWarning", {text = "", numhl = "LspDiagnosticsDefaultWarning"})
vim.fn.sign_define("LspDiagnosticsSignInformation", {text = "", numhl = "LspDiagnosticsDefaultInformation"})
vim.fn.sign_define("LspDiagnosticsSignHint", {text = "", numhl = "LspDiagnosticsDefaultHint"})