diff --git a/init.lua b/init.lua index fcc9c798..1d6fea90 100644 --- a/init.lua +++ b/init.lua @@ -166,6 +166,7 @@ vim.keymap.set('n', '', 'nohlsearch') -- CUSTOM KEYMAPS MOVE TO SEPERATE FILE PLEASE!!!!! vim.keymap.set('i', 'kj', '') vim.keymap.set('n', '-', 'Oil', { desc = 'Open Parent Directory' }) +vim.keymap.set('n', 'u', vim.cmd.UndotreeToggle) -- Diagnostic keymaps vim.keymap.set('n', 'q', vim.diagnostic.setloclist, { desc = 'Open diagnostic [Q]uickfix list' }) @@ -857,7 +858,7 @@ require('lazy').setup({ -- Load the colorscheme here. -- Like many other themes, this one has different styles, and you could load -- any other, such as 'tokyonight-storm', 'tokyonight-moon', or 'tokyonight-day'. - vim.cmd.colorscheme 'rose-pine' + vim.cmd.colorscheme 'rose-pine-moon' -- You can configure highlights by doing something like: vim.cmd.hi 'Comment gui=none' diff --git a/lua/custom/plugins/init.lua b/lua/custom/plugins/init.lua index 8c99156f..3da3cb0a 100644 --- a/lua/custom/plugins/init.lua +++ b/lua/custom/plugins/init.lua @@ -34,4 +34,7 @@ return { { '', 'TmuxNavigatePrevious' }, }, }, + { + 'mbbill/undotree', + }, }