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',
|
'neovim/nvim-lspconfig',
|
||||||
dependencies = {
|
dependencies = {
|
||||||
-- Automatically install LSPs to stdpath for neovim
|
-- Automatically install LSPs to stdpath for neovim
|
||||||
{ 'williamboman/mason.nvim', config = true,
|
{ 'williamboman/mason.nvim', config = true, dependencies = {
|
||||||
dependencies = {
|
'WhoIsSethDaniel/mason-tool-installer.nvim',
|
||||||
"WhoIsSethDaniel/mason-tool-installer.nvim",
|
} },
|
||||||
},
|
|
||||||
},
|
|
||||||
'williamboman/mason-lspconfig.nvim',
|
'williamboman/mason-lspconfig.nvim',
|
||||||
|
|
||||||
-- Useful status updates for LSP
|
-- 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
|
-- Autocompletion
|
||||||
'hrsh7th/nvim-cmp',
|
'hrsh7th/nvim-cmp',
|
||||||
|
|
Loading…
Add table
Reference in a new issue