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