2022-07-03 18:00:31 +02:00
|
|
|
-- Setup nvim-cmp.lsp
|
2023-05-08 17:03:45 +02:00
|
|
|
local hascmp, cmp = pcall(require, "cmp")
|
|
|
|
if not hascmp then
|
|
|
|
return
|
|
|
|
end
|
2022-07-02 14:37:50 +02:00
|
|
|
|
2023-08-26 00:13:11 +02:00
|
|
|
local select_next = function(fallback)
|
2023-08-25 16:59:55 +02:00
|
|
|
if cmp.visible() then
|
|
|
|
if require'snippy'.can_expand_or_advance() then
|
|
|
|
cmp.select_next_item({ behavior = cmp.SelectBehavior.Select })
|
|
|
|
else
|
|
|
|
cmp.select_next_item({ behavior = cmp.SelectBehavior.Insert })
|
|
|
|
end
|
|
|
|
elseif require'snippy'.can_expand_or_advance() then
|
|
|
|
require'snippy'.expand_or_advance()
|
|
|
|
else
|
|
|
|
fallback()
|
|
|
|
end
|
2023-08-26 00:13:11 +02:00
|
|
|
end
|
2022-07-02 14:37:50 +02:00
|
|
|
|
2023-08-26 00:13:11 +02:00
|
|
|
local select_previous = function(fallback)
|
2023-08-25 16:59:55 +02:00
|
|
|
if cmp.visible() then
|
|
|
|
if require'snippy'.can_expand_or_advance() then
|
|
|
|
cmp.select_prev_item({ behavior = cmp.SelectBehavior.Select })
|
|
|
|
else
|
|
|
|
cmp.select_prev_item({ behavior = cmp.SelectBehavior.Insert })
|
|
|
|
end
|
|
|
|
elseif require'snippy'.can_jump(-1) then
|
|
|
|
require'snippy'.previous()
|
|
|
|
else
|
|
|
|
fallback()
|
|
|
|
end
|
2023-08-26 00:13:11 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
cmp.setup({
|
|
|
|
snippet = {
|
|
|
|
-- REQUIRED - you must specify a snippet engine
|
|
|
|
expand = function(args)
|
|
|
|
-- vim.fn["vsnip#anonymous"](args.body) -- For `vsnip` users.
|
|
|
|
-- require('luasnip').lsp_expand(args.body) -- For `luasnip` users.
|
|
|
|
require('snippy').expand_snippet(args.body) -- For `snippy` users.
|
|
|
|
-- vim.fn["UltiSnips#Anon"](args.body) -- For `ultisnips` users.
|
|
|
|
end,
|
|
|
|
},
|
|
|
|
window = {
|
|
|
|
completion = cmp.config.window.bordered(),
|
|
|
|
documentation = cmp.config.window.bordered(),
|
|
|
|
},
|
|
|
|
mapping = cmp.mapping.preset.insert({
|
|
|
|
['<CR>'] = cmp.mapping.confirm({ select = true }), -- Accept currently selected item. Set `select` to `false` to only confirm explicitly selected items.
|
|
|
|
["<Tab>"] = cmp.mapping(select_next, { "i", "s" }),
|
|
|
|
["<C-J>"] = cmp.mapping(select_next, { "i", "s" }),
|
|
|
|
["<S-Tab>"] = cmp.mapping(select_previous, { "i", "s" }),
|
|
|
|
["<C-K>"] = cmp.mapping(select_previous, { "i", "s" }),
|
2022-07-02 14:37:50 +02:00
|
|
|
}),
|
|
|
|
sources = cmp.config.sources({
|
|
|
|
{ name = 'nvim_lsp' },
|
2022-07-04 22:15:35 +02:00
|
|
|
{ name = 'path' },
|
2023-08-25 16:59:55 +02:00
|
|
|
-- { name = 'vsnip' }, -- For vsnip users.
|
2022-07-02 14:37:50 +02:00
|
|
|
-- { name = 'luasnip' }, -- For luasnip users.
|
|
|
|
-- { name = 'ultisnips' }, -- For ultisnips users.
|
2023-08-25 16:59:55 +02:00
|
|
|
{ name = 'snippy' }, -- For snippy users.
|
2022-07-02 14:37:50 +02:00
|
|
|
}, {
|
|
|
|
{ name = 'buffer' },
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2023-08-25 22:44:42 +02:00
|
|
|
require('snippy').setup({
|
|
|
|
mappings = {
|
|
|
|
is = {
|
|
|
|
['<leader><Tab>'] = 'expand_or_advance',
|
|
|
|
['<leader><S-Tab>'] = 'previous',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
})
|
|
|
|
|
2022-07-02 14:37:50 +02:00
|
|
|
-- Set configuration for specific filetype.
|
|
|
|
cmp.setup.filetype('gitcommit', {
|
|
|
|
sources = cmp.config.sources({
|
|
|
|
{ name = 'cmp_git' }, -- You can specify the `cmp_git` source if you were installed it.
|
|
|
|
}, {
|
|
|
|
{ name = 'buffer' },
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
-- Use buffer source for `/` (if you enabled `native_menu`, this won't work anymore).
|
|
|
|
cmp.setup.cmdline('/', {
|
|
|
|
mapping = cmp.mapping.preset.cmdline(),
|
|
|
|
sources = {
|
|
|
|
{ name = 'buffer' }
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
-- Use cmdline & path source for ':' (if you enabled `native_menu`, this won't work anymore).
|
|
|
|
cmp.setup.cmdline(':', {
|
|
|
|
mapping = cmp.mapping.preset.cmdline(),
|
|
|
|
sources = cmp.config.sources({
|
|
|
|
{ name = 'path' }
|
|
|
|
}, {
|
|
|
|
{ name = 'cmdline' }
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2022-07-04 14:18:14 +02:00
|
|
|
local cmp_completion = require('nvim-autopairs.completion.cmp')
|
|
|
|
cmp.event:on('confirm_done',cmp_completion.on_confirm_done())
|
2022-07-04 14:04:29 +02:00
|
|
|
|
2022-07-02 14:37:50 +02:00
|
|
|
-- Setup lspconfig.
|
2022-11-09 23:39:26 +01:00
|
|
|
local capabilities = require('cmp_nvim_lsp').default_capabilities(vim.lsp.protocol.make_client_capabilities())
|
2022-07-25 14:27:06 +02:00
|
|
|
|
|
|
|
require("mason").setup {
|
|
|
|
ui = {
|
|
|
|
icons = {
|
|
|
|
package_installed = "✓"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
require("mason-lspconfig").setup {
|
2023-08-25 16:26:57 +02:00
|
|
|
ensure_installed = { "pyright", "texlab", "clangd", "bashls", "cmake", "jsonls", "tsserver", "vuels", "dockerls", "vimls", "html", "yamlls", "cssls", "lua_ls", "ltex", "gopls", "rust_analyzer", "jdtls", "emmet_ls" },
|
2022-07-25 14:27:06 +02:00
|
|
|
}
|
2022-07-03 14:30:11 +02:00
|
|
|
|
2022-07-02 14:37:50 +02:00
|
|
|
require('lspconfig').pyright.setup {
|
2023-05-03 16:28:59 +02:00
|
|
|
capabilities = capabilities,
|
|
|
|
settings = {
|
|
|
|
python = {
|
|
|
|
analysis = {
|
|
|
|
typeCheckingMode = "off"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2022-07-02 14:37:50 +02:00
|
|
|
}
|
2022-07-03 14:30:11 +02:00
|
|
|
|
2022-07-02 14:37:50 +02:00
|
|
|
require('lspconfig').texlab.setup {
|
|
|
|
capabilities = capabilities
|
|
|
|
}
|
2022-07-03 14:30:11 +02:00
|
|
|
|
|
|
|
require('lspconfig').clangd.setup {
|
2022-07-27 01:43:14 +02:00
|
|
|
capabilities = capabilities,
|
|
|
|
-- root_dir = function()
|
|
|
|
-- return require('lspconfig').util.root_pattern({'.clang-format', 'build/', 'compile_flags.txt'})
|
2023-04-29 12:01:29 +02:00
|
|
|
-- end,
|
2022-08-29 16:51:53 +02:00
|
|
|
cmd = {
|
|
|
|
"clangd",
|
|
|
|
"--background-index",
|
|
|
|
"--clang-tidy",
|
2023-01-27 17:47:47 +01:00
|
|
|
"-j=8",
|
|
|
|
"--clang-tidy-checks=*",
|
|
|
|
"--all-scopes-completion",
|
2022-08-29 16:51:53 +02:00
|
|
|
"--completion-style=bundled",
|
2023-01-27 17:47:47 +01:00
|
|
|
"--cross-file-rename",
|
|
|
|
"--completion-style=detailed",
|
|
|
|
"--header-insertion-decorators",
|
|
|
|
"--header-insertion=iwyu",
|
|
|
|
"--pch-storage=memory"
|
2022-08-29 16:51:53 +02:00
|
|
|
}
|
2022-07-03 14:30:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
require('lspconfig').bashls.setup {
|
|
|
|
capabilities = capabilities
|
|
|
|
}
|
|
|
|
|
|
|
|
require('lspconfig').cmake.setup {
|
|
|
|
capabilities = capabilities
|
|
|
|
}
|
|
|
|
|
2022-07-03 18:00:31 +02:00
|
|
|
require('lspconfig').jsonls.setup {
|
|
|
|
capabilities = capabilities
|
|
|
|
}
|
|
|
|
|
|
|
|
require('lspconfig').tsserver.setup {
|
|
|
|
capabilities = capabilities
|
|
|
|
}
|
|
|
|
|
2023-07-19 13:38:11 +02:00
|
|
|
require('lspconfig').kotlin_language_server.setup {
|
|
|
|
capabilities = capabilities
|
|
|
|
}
|
|
|
|
|
2022-07-03 18:00:31 +02:00
|
|
|
require('lspconfig').vuels.setup {
|
|
|
|
capabilities = capabilities
|
|
|
|
}
|
|
|
|
|
2022-07-03 14:30:11 +02:00
|
|
|
require('lspconfig').dockerls.setup {
|
|
|
|
capabilities = capabilities
|
|
|
|
}
|
|
|
|
|
|
|
|
require('lspconfig').vimls.setup {
|
|
|
|
capabilities = capabilities
|
|
|
|
}
|
|
|
|
|
2022-07-03 22:17:54 +02:00
|
|
|
require('lspconfig').html.setup {
|
|
|
|
capabilities = capabilities
|
|
|
|
}
|
|
|
|
|
2023-08-25 16:26:57 +02:00
|
|
|
require('lspconfig').emmet_ls.setup({
|
|
|
|
capabilities = capabilities,
|
|
|
|
filetypes = { "css", "eruby", "html", "javascript", "javascriptreact", "less", "sass", "scss", "svelte", "pug", "typescriptreact", "vue" },
|
|
|
|
init_options = {
|
|
|
|
html = {
|
|
|
|
options = {
|
|
|
|
["bem.enabled"] = true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
2022-07-03 19:56:25 +02:00
|
|
|
require('lspconfig').yamlls.setup {
|
|
|
|
capabilities = capabilities
|
|
|
|
}
|
|
|
|
|
2022-07-03 18:00:31 +02:00
|
|
|
require('lspconfig').cssls.setup {
|
|
|
|
capabilities = capabilities
|
|
|
|
}
|
2022-07-03 14:30:11 +02:00
|
|
|
|
2023-01-15 18:11:55 +01:00
|
|
|
require('lspconfig').jdtls.setup {
|
|
|
|
capabilities = capabilities
|
|
|
|
}
|
|
|
|
|
2023-02-28 12:31:38 +01:00
|
|
|
require('lspconfig').rust_analyzer.setup {
|
2023-08-17 11:07:02 +02:00
|
|
|
capabilities = capabilities,
|
2023-02-28 12:31:38 +01:00
|
|
|
}
|
|
|
|
|
2023-08-18 21:30:46 +02:00
|
|
|
require('lspconfig').gopls.setup {
|
|
|
|
capabilities = capabilities
|
|
|
|
}
|
|
|
|
|
2023-05-04 10:40:39 +02:00
|
|
|
require('lspconfig').lua_ls.setup {
|
2022-07-03 19:16:17 +02:00
|
|
|
settings = {
|
|
|
|
Lua = {
|
|
|
|
runtime = {
|
|
|
|
-- Tell the language server which version of Lua you're using (most likely LuaJIT in the case of Neovim)
|
|
|
|
version = 'LuaJIT',
|
|
|
|
},
|
|
|
|
diagnostics = {
|
|
|
|
-- Get the language server to recognize the `vim` global
|
2023-05-20 23:04:33 +02:00
|
|
|
globals = {'vim', 'use', 'awesome', 'client', 'root'},
|
2022-07-03 19:16:17 +02:00
|
|
|
},
|
|
|
|
workspace = {
|
|
|
|
-- Make the server aware of Neovim runtime files
|
2023-05-20 23:04:33 +02:00
|
|
|
library = {
|
|
|
|
['/usr/share/nvim/runtime/lua'] = true,
|
|
|
|
['/usr/share/nvim/runtime/lua/lsp'] = true,
|
|
|
|
['/usr/share/awesome/lib'] = true
|
|
|
|
}
|
2022-07-03 19:16:17 +02:00
|
|
|
},
|
|
|
|
-- Do not send telemetry data containing a randomized but unique identifier
|
|
|
|
telemetry = {
|
|
|
|
enable = false,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2022-07-02 14:37:50 +02:00
|
|
|
require('lspconfig').ltex.setup {
|
|
|
|
capabilities = capabilities,
|
2022-07-03 19:16:17 +02:00
|
|
|
on_attach = function(_, _)
|
2022-07-02 14:37:50 +02:00
|
|
|
require("ltex_extra").setup{
|
2022-07-03 14:30:11 +02:00
|
|
|
load_langs = {"nl-BE", "en-GB"},
|
2022-07-02 14:37:50 +02:00
|
|
|
init_check = true,
|
|
|
|
}
|
|
|
|
end,
|
|
|
|
settings = {
|
|
|
|
ltex = {
|
2022-07-12 14:16:23 +02:00
|
|
|
enabled = true,
|
2022-07-05 20:50:55 +02:00
|
|
|
language = "en-GB"
|
2022-07-02 14:37:50 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
vim.diagnostic.config({
|
|
|
|
virtual_text = false
|
|
|
|
})
|
|
|
|
|
2023-08-20 18:16:41 +02:00
|
|
|
|
|
|
|
-- Provides the Format, FormatWrite, FormatLock, and FormatWriteLock commands
|
|
|
|
require("formatter").setup {
|
|
|
|
filetype = {
|
|
|
|
lua = {
|
|
|
|
require("formatter.filetypes.lua").stylua,
|
|
|
|
},
|
|
|
|
python = {
|
|
|
|
require("formatter.filetypes.python").black,
|
|
|
|
},
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-07-02 14:37:50 +02:00
|
|
|
-- Show line diagnostics automatically in hover window
|
|
|
|
vim.o.updatetime = 250
|
|
|
|
vim.cmd [[autocmd CursorHold,CursorHoldI * lua vim.diagnostic.open_float(nil, {focus=false})]]
|
2022-07-03 18:00:31 +02:00
|
|
|
|
2023-08-20 18:16:41 +02:00
|
|
|
vim.keymap.set("n", "<leader>n", vim.diagnostic.goto_next, { silent = true })
|
|
|
|
vim.keymap.set("n", "<leader>p", vim.diagnostic.goto_prev, { silent = true })
|
|
|
|
vim.keymap.set("n", "<leader>f", vim.lsp.buf.code_action, { silent = true })
|
|
|
|
vim.keymap.set("n", "gd", vim.lsp.buf.definition, { silent = true })
|
|
|
|
vim.keymap.set("n", "gr", vim.lsp.buf.references, { silent = true })
|
|
|
|
vim.keymap.set("n", "<space>", vim.lsp.buf.hover, { noremap = true, silent = true })
|
|
|
|
vim.keymap.set("n", "<leader>rn", vim.lsp.buf.rename, { noremap = true, silent = true })
|