adding in tabs plugin
This commit is contained in:
@@ -97,4 +97,17 @@ return {
|
|||||||
end, {})
|
end, {})
|
||||||
end,
|
end,
|
||||||
},
|
},
|
||||||
|
|
||||||
|
-- add in shortcuts for next and previous buffer
|
||||||
|
{
|
||||||
|
'romgrk/barbar.nvim',
|
||||||
|
config = function()
|
||||||
|
vim.keymap.set('n', '<leader>9', function()
|
||||||
|
vim.cmd 'BufferPrevious'
|
||||||
|
end, {})
|
||||||
|
vim.keymap.set('n', '<leader>0', function()
|
||||||
|
vim.cmd 'BufferNext'
|
||||||
|
end, {})
|
||||||
|
end,
|
||||||
|
},
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user