nvim: update lsp config, mason options
This commit is contained in:
parent
affb407402
commit
b4ab16e385
2 changed files with 36 additions and 0 deletions
|
@ -86,3 +86,32 @@ wk.register({
|
||||||
},
|
},
|
||||||
|
|
||||||
}, { prefix = '<leader>' })
|
}, { prefix = '<leader>' })
|
||||||
|
|
||||||
|
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,
|
||||||
|
})
|
||||||
|
|
|
@ -47,6 +47,8 @@ return require('packer').startup(function(use)
|
||||||
requires = {
|
requires = {
|
||||||
'williamboman/mason-lspconfig.nvim',
|
'williamboman/mason-lspconfig.nvim',
|
||||||
'neovim/nvim-lspconfig',
|
'neovim/nvim-lspconfig',
|
||||||
|
'mfussenegger/nvim-lint',
|
||||||
|
'mhartington/formatter.nvim',
|
||||||
},
|
},
|
||||||
run = ':MasonUpdate',
|
run = ':MasonUpdate',
|
||||||
config = function()
|
config = function()
|
||||||
|
@ -147,6 +149,11 @@ return require('packer').startup(function(use)
|
||||||
end
|
end
|
||||||
}
|
}
|
||||||
|
|
||||||
|
use {
|
||||||
|
'folke/trouble.nvim',
|
||||||
|
requires = { 'nvim-tree/nvim-web-devicons' },
|
||||||
|
}
|
||||||
|
|
||||||
use { 'folke/which-key.nvim', config = function() require('keys') end }
|
use { 'folke/which-key.nvim', config = function() require('keys') end }
|
||||||
|
|
||||||
use 'preservim/nerdtree'
|
use 'preservim/nerdtree'
|
||||||
|
|
Loading…
Reference in a new issue