2022-07-03 18:00:31 +02:00
|
|
|
-- Setup nvim-cmp.lsp
|
2022-07-02 14:37:50 +02:00
|
|
|
local cmp = require'cmp'
|
|
|
|
|
2022-07-03 19:16:17 +02:00
|
|
|
local feedkey = function(key, mode)
|
|
|
|
vim.api.nvim_feedkeys(vim.api.nvim_replace_termcodes(key, true, true, true), mode, true)
|
|
|
|
end
|
|
|
|
|
2022-07-02 14:37:50 +02:00
|
|
|
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(function(fallback)
|
2022-07-03 19:16:17 +02:00
|
|
|
if vim.fn["vsnip#jumpable"](1) == 1 then
|
|
|
|
feedkey("<Plug>(vsnip-jump-next)", "")
|
|
|
|
elseif cmp.visible() then
|
2022-07-02 14:37:50 +02:00
|
|
|
cmp.select_next_item()
|
|
|
|
else
|
|
|
|
fallback() -- The fallback function sends a already mapped key. In this case, it's probably `<Tab>`.
|
|
|
|
end
|
|
|
|
end, { "i", "s" }),
|
|
|
|
|
|
|
|
['<S-Tab>'] = cmp.mapping(function()
|
2022-07-03 19:16:17 +02:00
|
|
|
if vim.fn["vsnip#jumpable"](1) == 1 then
|
|
|
|
feedkey("<Plug>(vsnip-jump-next)", "")
|
|
|
|
elseif cmp.visible() then
|
|
|
|
cmp.select_next_item()
|
2022-07-02 14:37:50 +02:00
|
|
|
end
|
|
|
|
end, { "i", "s"}),
|
|
|
|
}),
|
|
|
|
sources = cmp.config.sources({
|
|
|
|
{ name = 'nvim_lsp' },
|
2022-07-04 22:15:35 +02:00
|
|
|
{ name = 'path' },
|
2022-07-02 14:37:50 +02:00
|
|
|
{ name = 'vsnip' }, -- For vsnip users.
|
|
|
|
-- { name = 'luasnip' }, -- For luasnip users.
|
|
|
|
-- { name = 'ultisnips' }, -- For ultisnips users.
|
|
|
|
-- { name = 'snippy' }, -- For snippy users.
|
|
|
|
}, {
|
|
|
|
{ name = 'buffer' },
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
-- 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 {
|
|
|
|
ensure_installed = { "pyright", "texlab", "clangd", "bashls", "cmake", "jsonls", "tsserver", "vuels", "dockerls", "vimls", "html", "yamlls", "cssls", "sumneko_lua", "ltex"},
|
|
|
|
}
|
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
|
|
|
|
}
|
|
|
|
|
|
|
|
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
|
|
|
|
}
|
|
|
|
|
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 {
|
|
|
|
capabilities = capabilities
|
|
|
|
}
|
|
|
|
|
2022-07-03 19:16:17 +02:00
|
|
|
require'lspconfig'.sumneko_lua.setup {
|
|
|
|
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
|
|
|
|
globals = {'vim'},
|
|
|
|
},
|
|
|
|
workspace = {
|
|
|
|
-- Make the server aware of Neovim runtime files
|
|
|
|
library = vim.api.nvim_get_runtime_file("", true),
|
|
|
|
},
|
|
|
|
-- 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
|
|
|
|
})
|
|
|
|
|
|
|
|
-- 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
|
|
|
|
|
|
|
vim.api.nvim_set_keymap("n", "<leader>n", ":lua vim.diagnostic.goto_next()<CR>", { silent = true })
|
|
|
|
vim.api.nvim_set_keymap("n", "<leader>p", ":lua vim.diagnostic.goto_prev()<CR>", { silent = true })
|
|
|
|
vim.api.nvim_set_keymap("n", "<leader>f", ":lua vim.lsp.buf.code_action()<CR>", { silent = true })
|
|
|
|
vim.api.nvim_set_keymap("n", "gd", ":lua vim.lsp.buf.definition()<CR>", { silent = true })
|
|
|
|
vim.api.nvim_set_keymap("n", "gr", ":lua vim.lsp.buf.references()<CR>", { silent = true })
|