add bar and descriptions
i might add descriptions for everything, it's just going to take a while...
This commit is contained in:
parent
be1bcff52d
commit
2544433101
11
lua/custom/plugins/bufferline.lua
Normal file
11
lua/custom/plugins/bufferline.lua
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
return {
|
||||||
|
'akinsho/bufferline.nvim',
|
||||||
|
version = "*",
|
||||||
|
dependencies = 'nvim-tree/nvim-web-devicons',
|
||||||
|
config = function()
|
||||||
|
require('bufferline').setup()
|
||||||
|
vim.keymap.set("n", "<A-.>", "<cmd>bnext<CR>", { desc = "Go to next Buffer" })
|
||||||
|
vim.keymap.set("n", "<A-,>", "<cmd>bprev<CR>", { desc = "Go to previous Buffer" })
|
||||||
|
vim.keymap.set("n", "<A-x>", "<cmd>bdelete<CR>", { desc = "Delete current buffer" })
|
||||||
|
end
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user