neovim-confs/lua/plugins/bufferline.lua

106 lines
2.7 KiB
Lua
Raw Normal View History

2021-07-15 06:48:10 +02:00
local global_theme = "themes/" .. vim.g.nvchad_theme
local colors = require(global_theme)
local present, bufferline = pcall(require, "bufferline")
if not present then
return
end
bufferline.setup {
2021-03-13 02:23:02 +01:00
options = {
offsets = {{filetype = "NvimTree", text = "", padding = 1}},
2021-03-13 02:23:02 +01:00
buffer_close_icon = "",
2021-04-26 10:14:51 +02:00
modified_icon = "",
close_icon = "",
2021-03-13 02:23:02 +01:00
left_trunc_marker = "",
right_trunc_marker = "",
max_name_length = 14,
max_prefix_length = 13,
2021-05-06 16:19:02 +02:00
tab_size = 20,
show_tab_indicators = true,
enforce_regular_tabs = false,
2021-03-13 02:23:02 +01:00
view = "multiwindow",
show_buffer_close_icons = true,
separator_style = "thin",
2021-07-15 06:48:10 +02:00
mappings = true,
always_show_bufferline = true
},
highlights = {
fill = {
guifg = colors.grey_fg,
guibg = colors.black2
},
background = {
guifg = colors.grey_fg,
guibg = colors.black2
},
-- buffers
buffer_visible = {
guifg = colors.light_grey,
guibg = colors.black2
},
buffer_selected = {
guifg = colors.white,
guibg = colors.black,
gui = "bold"
},
-- tabs
tab = {
guifg = colors.light_grey,
guibg = colors.one_bg3
},
tab_selected = {
guifg = colors.black2,
guibg = colors.nord_blue
},
tab_close = {
guifg = colors.red,
guibg = colors.black
},
indicator_selected = {
guifg = colors.black,
guibg = colors.black
},
-- separators
separator = {
guifg = colors.black2,
guibg = colors.black2
},
separator_visible = {
guifg = colors.black2,
guibg = colors.black2
},
separator_selected = {
guifg = colors.black2,
guibg = colors.black2
},
-- modified
modified = {
guifg = colors.red,
guibg = colors.black2
},
modified_visible = {
guifg = colors.red,
guibg = colors.black2
},
modified_selected = {
guifg = colors.green,
guibg = colors.black
},
-- close buttons
close_button = {
guifg = colors.light_grey,
guibg = colors.black2
},
close_button_visible = {
guifg = colors.light_grey,
guibg = colors.black2
},
close_button_selected = {
guifg = colors.red,
guibg = colors.black
}
2021-03-13 02:23:02 +01:00
}
2021-03-07 15:22:30 +01:00
}