diff --git a/lua/custom/maps/init.lua b/lua/custom/maps/init.lua index 8b4ebce..ce7ecfa 100644 --- a/lua/custom/maps/init.lua +++ b/lua/custom/maps/init.lua @@ -52,8 +52,8 @@ vim.keymap.set('n', '[d', vim.diagnostic.goto_prev, { desc = 'Go to previous [D] vim.keymap.set('n', ']d', vim.diagnostic.goto_next, { desc = 'Go to next [D]iagnostic message' }) -- let me out!!! -vim.keymap.set({ 'n', 'v' }, 'qqq', 'bd!', { desc = '[Q]uit the current window' }) -vim.keymap.set({ 'n', 'v' }, '', 'bw!', { desc = '[Q]uit the current window' }) +vim.keymap.set({ 'n', 'v' }, 'qqq', 'bnextbd #', { desc = '[Q]uit the current window' }) +vim.keymap.set({ 'n', 'v' }, '', 'bnextbd #', { desc = '[Q]uit the current window' }) vim.keymap.set({ 'n' }, '#', "'", { desc = '[Q]uit the current window' }) diff --git a/lua/custom/plugins/ui.lua b/lua/custom/plugins/ui.lua index 6f8a1f2..58b7c78 100644 --- a/lua/custom/plugins/ui.lua +++ b/lua/custom/plugins/ui.lua @@ -611,6 +611,7 @@ return { 'tiagovla/scope.nvim', config = function() require('scope').setup {} + require('telescope').load_extension 'scope' end, }, },