dotfiles-nvim/lua/plugins/lsp.lua

93 lines
3.5 KiB
Lua
Raw Normal View History

2023-12-18 09:11:00 +01:00
vim.api.nvim_create_autocmd('LspAttach', {
group = vim.api.nvim_create_augroup('UserLspConfig', {}),
callback = function(ev)
-- Enable completion triggered by <c-x><c-o>
vim.bo[ev.buf].omnifunc = 'v:lua.vim.lsp.omnifunc'
-- Buffer local mappings.
-- See `:help vim.lsp.*` for documentation on any of the below functions
local opts = { buffer = ev.buf }
vim.keymap.set('n', 'gD', vim.lsp.buf.declaration, opts)
vim.keymap.set('n', 'gd', vim.lsp.buf.definition, opts)
vim.keymap.set('n', 'K', vim.lsp.buf.hover, opts)
vim.keymap.set('n', 'gi', vim.lsp.buf.implementation, opts)
vim.keymap.set('n', '<C-k>', vim.lsp.buf.signature_help, opts)
vim.keymap.set('n', '<space>wa', vim.lsp.buf.add_workspace_folder, opts)
vim.keymap.set('n', '<space>wr', vim.lsp.buf.remove_workspace_folder, opts)
vim.keymap.set('n', '<space>wl', function()
print(vim.inspect(vim.lsp.buf.list_workspace_folders()))
end, opts)
vim.keymap.set('n', '<space>D', vim.lsp.buf.type_definition, opts)
vim.keymap.set('n', '<space>rn', vim.lsp.buf.rename, opts)
vim.keymap.set({ 'n', 'v' }, '<space>ca', vim.lsp.buf.code_action, opts)
vim.keymap.set('n', 'gr', vim.lsp.buf.references, opts)
vim.keymap.set('n', '<space>f', function()
vim.lsp.buf.format { async = true }
end, opts)
end,
})
return {
2023-12-27 00:52:20 +01:00
{
"neovim/nvim-lspconfig",
2023-12-27 02:20:46 +01:00
dependencies = {
"hrsh7th/cmp-nvim-lsp",
},
2023-12-27 00:52:20 +01:00
config = function()
local lspconfig = require("lspconfig")
2023-12-18 09:11:00 +01:00
2023-12-27 02:20:46 +01:00
local capabilities = require("cmp_nvim_lsp").default_capabilities();
2023-12-18 09:11:00 +01:00
2023-12-27 02:20:46 +01:00
lspconfig.pyright.setup({
capabilities = capabilities,
})
lspconfig.rust_analyzer.setup({
capabilities = capabilities,
})
2023-12-18 09:11:00 +01:00
2023-12-27 00:52:20 +01:00
lspconfig.lua_ls.setup({
2023-12-27 02:20:46 +01:00
capabilities = capabilities,
2023-12-27 00:52:20 +01: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",
},
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,
},
2023-12-18 09:11:00 +01:00
},
},
2023-12-27 00:52:20 +01:00
})
end
},
{
"simrat39/rust-tools.nvim",
dependencies = {
"nvim-lua/plenary.nvim",
{
"Saecki/crates.nvim",
tag = 'stable',
},
},
opts = {
server = {
on_attach = function(_, bufnr)
local rt = require("rust-tools");
-- Hover actions
vim.keymap.set("n", "<C-space>", rt.hover_actions.hover_actions, { buffer = bufnr })
-- Code action groups
vim.keymap.set("n", "<Leader>a", rt.code_action_group.code_action_group, { buffer = bufnr })
end,
2023-12-18 09:11:00 +01:00
},
2023-12-27 00:52:20 +01:00
},
event = { "LspAttach *.rs" },
}
2023-12-18 09:11:00 +01:00
}