mirror of
https://github.com/szymon-jozef/amazing-dotfiles.git
synced 2026-09-07 20:20:43 +02:00
116 lines
3.5 KiB
Lua
116 lines
3.5 KiB
Lua
return {
|
|
'neovim/nvim-lspconfig',
|
|
lazy = false,
|
|
dependencies = {
|
|
{
|
|
"mason-org/mason.nvim",
|
|
opts = {
|
|
modifiable = true
|
|
}
|
|
},
|
|
{
|
|
"mason-org/mason-lspconfig.nvim",
|
|
opts = {},
|
|
},
|
|
'hrsh7th/cmp-nvim-lsp',
|
|
'hrsh7th/cmp-buffer',
|
|
'hrsh7th/cmp-path',
|
|
'hrsh7th/cmp-cmdline',
|
|
'hrsh7th/nvim-cmp',
|
|
'saadparwaiz1/cmp_luasnip',
|
|
{ "L3MON4D3/LuaSnip", build = "make install_jsregexp" },
|
|
},
|
|
config = function()
|
|
local cmp_lsp = require("cmp_nvim_lsp")
|
|
local cmp = require("cmp")
|
|
local cmp_select = { behavior = cmp.SelectBehavior.Select }
|
|
|
|
cmp.setup({
|
|
snippet = {
|
|
expand = function(args)
|
|
require("luasnip").lsp_expand(args.body)
|
|
end,
|
|
},
|
|
window = {
|
|
completion = cmp.config.window.bordered(),
|
|
documentation = cmp.config.window.bordered(),
|
|
},
|
|
mapping = cmp.mapping.preset.insert({
|
|
['<C-e>'] = cmp.mapping.abort(),
|
|
['<C-p>'] = cmp.mapping.select_prev_item(cmp_select),
|
|
['<C-n>'] = cmp.mapping.select_next_item(cmp_select),
|
|
['<C-y>'] = cmp.mapping.confirm({ select = true }),
|
|
}),
|
|
sources = cmp.config.sources({
|
|
{ name = 'nvim_lsp' },
|
|
{ name = 'luasnip' },
|
|
},
|
|
{
|
|
{ name = 'buffer' },
|
|
})
|
|
})
|
|
local capabilities = vim.tbl_deep_extend(
|
|
"force",
|
|
{},
|
|
vim.lsp.protocol.make_client_capabilities(),
|
|
cmp_lsp.default_capabilities()
|
|
)
|
|
vim.diagnostic.config({
|
|
virtual_text = {
|
|
prefix = "●",
|
|
spacing = 2,
|
|
source = "if_many",
|
|
},
|
|
signs = true,
|
|
underline = true,
|
|
update_in_insert = false
|
|
})
|
|
|
|
require("mason-lspconfig").setup({
|
|
ensure_installed = {
|
|
"lua_ls",
|
|
"clangd",
|
|
"rust_analyzer"
|
|
},
|
|
handlers = {
|
|
function(server_name)
|
|
require("lspconfig")[server_name].setup({
|
|
capabilities = capabilities,
|
|
})
|
|
end
|
|
},
|
|
automatic_enable = true,
|
|
})
|
|
|
|
local buffer_autoformat = function(bufnr)
|
|
local group = 'lsp_autoformat'
|
|
vim.api.nvim_create_augroup(group, { clear = false })
|
|
vim.api.nvim_clear_autocmds({ group = group, buffer = bufnr })
|
|
|
|
vim.api.nvim_create_autocmd('BufWritePre', {
|
|
buffer = bufnr,
|
|
group = group,
|
|
desc = "Lsp format on save",
|
|
callback = function()
|
|
vim.lsp.buf.format({ async = false, timeout_ms = 10000 })
|
|
end
|
|
})
|
|
end
|
|
|
|
vim.api.nvim_create_autocmd('LspAttach', {
|
|
callback = function(event)
|
|
local id = vim.tbl_get(event, 'data', 'client_id')
|
|
local client = id and vim.lsp.get_client_by_id(id)
|
|
|
|
if client == nil then
|
|
return
|
|
end
|
|
|
|
if client.supports_method('textDocument/formatting') then
|
|
buffer_autoformat(event.buf)
|
|
end
|
|
end
|
|
})
|
|
end,
|
|
}
|