From 38d780b50268c7da13340c2537c3d1757210f246 Mon Sep 17 00:00:00 2001 From: siduck76 Date: Tue, 27 Apr 2021 15:27:07 +0530 Subject: [PATCH] bufferline: avoid using vanilla vim mappings --- lua/bufferline/lua.lua | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/lua/bufferline/lua.lua b/lua/bufferline/lua.lua index b77fa93..707a8a2 100644 --- a/lua/bufferline/lua.lua +++ b/lua/bufferline/lua.lua @@ -27,7 +27,6 @@ require "bufferline".setup { guifg = bar_fg, guibg = "#1e222a" }, - -- focused window buffer_selected = { guifg = activeBuffer_fg, @@ -38,7 +37,6 @@ require "bufferline".setup { guifg = "#353b45", guibg = "#353b45" }, - -- unfocused opened window buffer_visible = { guifg = "#9298a0", @@ -72,8 +70,8 @@ vim.g.mapleader = " " map("n", "", [[tabnew]], opt) --removing a buffer -map("n", "", [[bdelete]], opt) +map("n", "", [[bdelete]], opt) -- tabnew and tabprev map("n", "", [[BufferLineCycleNext]], opt) -map("n", "", [[BufferLineCyclePrev]], opt) +map("n", "", [[BufferLineCyclePrev]], opt)