This commit is contained in:
Adam 2024-01-19 00:14:26 -05:00
parent ee5b10d8f0
commit 018cb2a0da

View file

@ -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',