You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
1.1 KiB
Lua
39 lines
1.1 KiB
Lua
2 years ago
|
local lsp = require('lsp-zero')
|
||
|
|
||
|
lsp.preset('recommended')
|
||
|
|
||
|
require("mason-lspconfig").setup({
|
||
|
ensure_installed = {
|
||
|
'lua_ls',
|
||
|
'gopls',
|
||
|
'rust_analyzer',
|
||
|
'cmake',
|
||
|
'clangd',
|
||
|
'zls',
|
||
|
'bashls',
|
||
|
}
|
||
|
})
|
||
|
|
||
|
lsp.nvim_workspace()
|
||
|
|
||
|
lsp.set_preferences({
|
||
|
sign_icons = { }
|
||
|
})
|
||
|
|
||
|
lsp.on_attach(function(client, bufnr)
|
||
|
local opts = { buffer = bufnr, remap = false }
|
||
|
|
||
|
vim.keymap.set("n", "gd", function() vim.lsp.buf.definition() end, opts)
|
||
|
vim.keymap.set("n", "gh", function() vim.lsp.buf.hover() end, opts)
|
||
|
vim.keymap.set("n", "<leader>vws", function() vim.lsp.buf.workspace_symbol() end, opts)
|
||
|
vim.keymap.set("n", "<leader>vd", function() vim.diagnostic.open_float() end, opts)
|
||
|
vim.keymap.set("n", "[d", function() vim.diagnostic.goto_next() end, opts)
|
||
|
vim.keymap.set("n", "]d", function() vim.diagnostic.goto_prev() end, opts)
|
||
|
vim.keymap.set("n", "<C-.>", function() vim.lsp.buf.code_action() end, opts)
|
||
|
vim.keymap.set("n", "<leader>vrr", function() vim.lsp.buf.references() end, opts)
|
||
|
vim.keymap.set("n", "<leader>rn", function() vim.lsp.buf.rename() end, opts)
|
||
|
vim.keymap.set("i", "<C-h>", function() vim.lsp.buf.signature_help() end, opts)
|
||
|
end)
|
||
|
|
||
|
lsp.setup()
|