initial commit
This commit is contained in:
commit
48bd259cd8
29 changed files with 1107 additions and 0 deletions
27
lua/plugin/bufferline.lua
Normal file
27
lua/plugin/bufferline.lua
Normal file
|
@ -0,0 +1,27 @@
|
|||
return {
|
||||
{
|
||||
"akinsho/bufferline.nvim",
|
||||
config = function()
|
||||
require("bufferline").setup({
|
||||
options = {
|
||||
offsets = {
|
||||
{
|
||||
filetype = "netrw",
|
||||
text = "File Explorer",
|
||||
highlight = "Directory",
|
||||
text_align = 'center',
|
||||
separator = true
|
||||
}
|
||||
},
|
||||
show_buffer_close_icons = false,
|
||||
},
|
||||
highlights = {
|
||||
buffer_selected = {
|
||||
fg = "#d8a657",
|
||||
bg = "#141617",
|
||||
},
|
||||
},
|
||||
})
|
||||
end,
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue