bufferline : add offsets

This commit is contained in:
siduck76 2021-05-09 23:06:22 +05:30
parent d7f10904b6
commit c7d1ba6927
1 changed files with 3 additions and 9 deletions

View File

@ -5,6 +5,7 @@ local activeBuffer_fg = "#c8ccd4"
require "bufferline".setup { require "bufferline".setup {
options = { options = {
offsets = {{filetype = "NvimTree", text = "Explorer"}},
buffer_close_icon = "", buffer_close_icon = "",
modified_icon = "", modified_icon = "",
close_icon = "", close_icon = "",
@ -20,7 +21,6 @@ require "bufferline".setup {
separator_style = "thin", separator_style = "thin",
mappings = "true" mappings = "true"
}, },
-- bar colors!! -- bar colors!!
highlights = { highlights = {
fill = { fill = {
@ -31,7 +31,6 @@ require "bufferline".setup {
guifg = bar_fg, guifg = bar_fg,
guibg = "#252931" guibg = "#252931"
}, },
-- buffer -- buffer
buffer_selected = { buffer_selected = {
guifg = activeBuffer_fg, guifg = activeBuffer_fg,
@ -42,7 +41,6 @@ require "bufferline".setup {
guifg = "#9298a0", guifg = "#9298a0",
guibg = "#252931" guibg = "#252931"
}, },
-- tabs over right -- tabs over right
tab = { tab = {
guifg = "#9298a0", guifg = "#9298a0",
@ -56,7 +54,6 @@ require "bufferline".setup {
guifg = "#f9929b", guifg = "#f9929b",
guibg = "#252931" guibg = "#252931"
}, },
-- buffer separators -- buffer separators
separator = { separator = {
guifg = "#252931", guifg = "#252931",
@ -70,12 +67,10 @@ require "bufferline".setup {
guifg = "#252931", guifg = "#252931",
guibg = "#252931" guibg = "#252931"
}, },
indicator_selected = { indicator_selected = {
guifg = "#252931", guifg = "#252931",
guibg = "#252931" guibg = "#252931"
}, },
-- modified files (but not saved) -- modified files (but not saved)
modified_selected = { modified_selected = {
guifg = "#A3BE8C", guifg = "#A3BE8C",
@ -99,4 +94,3 @@ map("n", "<S-x>", [[<Cmd>bdelete<CR>]], opt) -- close tab
-- move between tabs -- move between tabs
map("n", "<TAB>", [[<Cmd>BufferLineCycleNext<CR>]], opt) map("n", "<TAB>", [[<Cmd>BufferLineCycleNext<CR>]], opt)
map("n", "<S-TAB>", [[<Cmd>BufferLineCyclePrev<CR>]], opt) map("n", "<S-TAB>", [[<Cmd>BufferLineCyclePrev<CR>]], opt)