initial commit
This commit is contained in:
parent
9c1b47cc8b
commit
78152fa48c
11 changed files with 649 additions and 0 deletions
lua/bufferline
54
lua/bufferline/lua.lua
Normal file
54
lua/bufferline/lua.lua
Normal file
|
@ -0,0 +1,54 @@
|
|||
vim.o.termguicolors = true
|
||||
|
||||
require'bufferline'.setup{
|
||||
options = {
|
||||
buffer_close_icon= '',
|
||||
modified_icon = '●',
|
||||
close_icon = '',
|
||||
left_trunc_marker = '',
|
||||
right_trunc_marker = '',
|
||||
max_name_length = 14,
|
||||
max_prefix_length = 13,
|
||||
tab_size = 18,
|
||||
enforce_regular_tabs = true ,
|
||||
view = "multiwindow" ,
|
||||
show_buffer_close_icons = true ,
|
||||
separator_style = "thin"
|
||||
},
|
||||
|
||||
highlights = {
|
||||
background = {
|
||||
guifg = comment_fg,
|
||||
guibg = '#282c34'
|
||||
},
|
||||
fill = {
|
||||
guifg = comment_fg,
|
||||
guibg = '#282c34'
|
||||
},
|
||||
buffer_selected = {
|
||||
guifg = normal_fg,
|
||||
guibg = '#3A3E44',
|
||||
gui = "bold"
|
||||
},
|
||||
separator_visible = {
|
||||
guifg = '#282c34' ,
|
||||
guibg = '#282c34'
|
||||
},
|
||||
separator_selected = {
|
||||
guifg = '#282c34' ,
|
||||
guibg = '#282c34'
|
||||
},
|
||||
separator = {
|
||||
guifg = '#282c34' ,
|
||||
guibg = '#282c34'
|
||||
},
|
||||
indicator_selected = {
|
||||
guifg = '#282c34' ,
|
||||
guibg = '#282c34'
|
||||
},
|
||||
modified_selected = {
|
||||
guifg = string_fg,
|
||||
guibg = '#3A3E44'
|
||||
}
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue