bufferline: avoid using vanilla vim mappings

This commit is contained in:
siduck76 2021-04-27 15:27:07 +05:30
parent c09c0ebc3a
commit 38d780b502
1 changed files with 2 additions and 4 deletions

View File

@ -27,7 +27,6 @@ require "bufferline".setup {
guifg = bar_fg, guifg = bar_fg,
guibg = "#1e222a" guibg = "#1e222a"
}, },
-- focused window -- focused window
buffer_selected = { buffer_selected = {
guifg = activeBuffer_fg, guifg = activeBuffer_fg,
@ -38,7 +37,6 @@ require "bufferline".setup {
guifg = "#353b45", guifg = "#353b45",
guibg = "#353b45" guibg = "#353b45"
}, },
-- unfocused opened window -- unfocused opened window
buffer_visible = { buffer_visible = {
guifg = "#9298a0", guifg = "#9298a0",
@ -72,8 +70,8 @@ vim.g.mapleader = " "
map("n", "<S-t>", [[<Cmd>tabnew<CR>]], opt) map("n", "<S-t>", [[<Cmd>tabnew<CR>]], opt)
--removing a buffer --removing a buffer
map("n", "<S-d>", [[<Cmd>bdelete<CR>]], opt) map("n", "<S-x>", [[<Cmd>bdelete<CR>]], opt)
-- tabnew and tabprev -- tabnew and tabprev
map("n", "<S-l>", [[<Cmd>BufferLineCycleNext<CR>]], opt) map("n", "<S-l>", [[<Cmd>BufferLineCycleNext<CR>]], opt)
map("n", "<S-s>", [[<Cmd>BufferLineCyclePrev<CR>]], opt) map("n", "<S-p>", [[<Cmd>BufferLineCyclePrev<CR>]], opt)