94 lines
2.7 KiB
Lua
94 lines
2.7 KiB
Lua
local custom_server_opts = {
|
|
omnisharp = {
|
|
-- Support for showing unimported types and adding `using` directives.
|
|
enable_import_completion = true,
|
|
|
|
-- Don't include preview versions of the .NET SDK.
|
|
sdk_include_prereleases = false,
|
|
},
|
|
|
|
lua_ls = {
|
|
settings = {
|
|
Lua = {
|
|
-- I'm using lua only inside neovim, so the runtime is LuaJIT.
|
|
runtime = { version = 'LuaJIT' },
|
|
|
|
-- Get the language server to recognize the `vim` global.
|
|
diagnostics = { globals = {'vim'} },
|
|
|
|
-- Make the server aware of Neovim runtime files.
|
|
workspace = { library = vim.api.nvim_get_runtime_file("", true) },
|
|
|
|
-- Do not send telemetry data containing a randomized but unique identifier
|
|
telemetry = { enable = false },
|
|
},
|
|
},
|
|
}
|
|
}
|
|
|
|
local custom_filetype_attach = {
|
|
cs = function(client, _ --[[bufnr]])
|
|
client.server_capabilities.semanticTokensProvider = nil
|
|
end,
|
|
}
|
|
|
|
local custom_attach = function(client, bufnr)
|
|
vim.bo.omnifunc = 'v:lua.vim.lsp.omnifunc' -- do completion with <c-x><c-o>
|
|
|
|
local map = vim.keymap.set
|
|
local opts = { buffer = bufnr }
|
|
|
|
map('n', '<space>ca', vim.lsp.buf.code_action, opts)
|
|
map('n', '<space>cf', vim.lsp.buf.format, opts)
|
|
map('n', 'gD', vim.lsp.buf.declaration, opts)
|
|
map('n', 'gd', vim.lsp.buf.definition, opts)
|
|
map('n', 'K', vim.lsp.buf.hover, opts)
|
|
map('n', 'gi', vim.lsp.buf.implementation, opts)
|
|
map('n', 'grr', vim.lsp.buf.rename, opts)
|
|
map('n', 'gt', vim.lsp.buf.type_definition, opts)
|
|
|
|
local filetype_attach = custom_filetype_attach[vim.bo.filetype]
|
|
if filetype_attach then filetype_attach(client, bufnr) end
|
|
end
|
|
|
|
local custom_capabilities = function()
|
|
local capabilities = vim.lsp.protocol.make_client_capabilities()
|
|
|
|
local ok, cmp = pcall(require, 'cmp_nvim_lsp')
|
|
if ok then
|
|
vim.tbl_deep_extend('force', capabilities, cmp.default_capabilities())
|
|
end
|
|
|
|
return capabilities
|
|
end
|
|
|
|
local config = function()
|
|
local lsp = require 'lspconfig'
|
|
local capabilities = custom_capabilities()
|
|
|
|
require('mason').setup()
|
|
require('mason-lspconfig').setup {
|
|
handlers = {
|
|
function(server)
|
|
local common_opts = {
|
|
on_attach = custom_attach,
|
|
capabilities = capabilities,
|
|
}
|
|
local server_opts = custom_server_opts[server] or {}
|
|
local opts = vim.tbl_extend('force', common_opts, server_opts)
|
|
lsp[server].setup(opts)
|
|
end,
|
|
}
|
|
}
|
|
end
|
|
|
|
return {
|
|
'neovim/nvim-lspconfig',
|
|
|
|
config = config,
|
|
dependencies = {
|
|
'williamboman/mason.nvim',
|
|
'williamboman/mason-lspconfig.nvim',
|
|
},
|
|
}
|
|
|