neovim-config/lua/plugins/bufferline.lua

20 lines
576 B
Lua
Raw Normal View History

2021-03-13 01:23:02 +00:00
require "bufferline".setup {
options = {
offsets = {{filetype = "NvimTree", text = "", padding = 1}},
2021-03-13 01:23:02 +00:00
buffer_close_icon = "",
2021-04-26 08:14:51 +00:00
modified_icon = "",
close_icon = "",
2021-03-13 01:23:02 +00:00
left_trunc_marker = "",
right_trunc_marker = "",
max_name_length = 14,
max_prefix_length = 13,
2021-05-06 14:19:02 +00:00
tab_size = 20,
show_tab_indicators = true,
enforce_regular_tabs = false,
2021-03-13 01:23:02 +00:00
view = "multiwindow",
show_buffer_close_icons = true,
separator_style = "thin",
mappings = "true"
2021-03-13 01:23:02 +00:00
}
2021-03-07 14:22:30 +00:00
}