undotree
This commit is contained in:
parent
ee5b10d8f0
commit
018cb2a0da
1 changed files with 11 additions and 5 deletions
|
@ -21,11 +21,9 @@ require('lazy').setup({
|
|||
'neovim/nvim-lspconfig',
|
||||
dependencies = {
|
||||
-- Automatically install LSPs to stdpath for neovim
|
||||
{ 'williamboman/mason.nvim', config = true,
|
||||
dependencies = {
|
||||
"WhoIsSethDaniel/mason-tool-installer.nvim",
|
||||
},
|
||||
},
|
||||
{ 'williamboman/mason.nvim', config = true, dependencies = {
|
||||
'WhoIsSethDaniel/mason-tool-installer.nvim',
|
||||
} },
|
||||
'williamboman/mason-lspconfig.nvim',
|
||||
|
||||
-- Useful status updates for LSP
|
||||
|
@ -37,6 +35,14 @@ require('lazy').setup({
|
|||
},
|
||||
},
|
||||
|
||||
--UndoTree
|
||||
{
|
||||
'mbbill/undotree',
|
||||
init = function()
|
||||
vim.keymap.set('n', '<leader>u', '<cmd>UndotreeToggle<CR>', { desc = 'UndotreeToggle' })
|
||||
end,
|
||||
},
|
||||
|
||||
{
|
||||
-- Autocompletion
|
||||
'hrsh7th/nvim-cmp',
|
||||
|
|
Loading…
Add table
Reference in a new issue