2024-02-10 23:59:40 +05:30
|
|
|
vim.opt.termguicolors = true
|
2024-02-11 14:02:36 +05:30
|
|
|
require("bufferline").setup({
|
2024-02-10 23:59:40 +05:30
|
|
|
options = {
|
|
|
|
diagnostics = "nvim_lsp",
|
|
|
|
themable = false,
|
|
|
|
offsets = {
|
|
|
|
{
|
|
|
|
filetype = "neo-tree",
|
|
|
|
text = "File Tree",
|
2024-02-11 14:02:36 +05:30
|
|
|
separator = true,
|
|
|
|
},
|
2024-02-10 23:59:40 +05:30
|
|
|
},
|
|
|
|
separator_style = "slant",
|
|
|
|
show_buffer_close_icons = false,
|
|
|
|
show_close_icon = false,
|
2024-02-11 14:02:36 +05:30
|
|
|
},
|
|
|
|
})
|