This commit is contained in:
Adithya 2024-06-10 00:59:34 +05:30
parent 2123f9d239
commit aa36b9acf8
Signed by: adtya
GPG key ID: B8857BFBA2C47B9C
2 changed files with 18 additions and 12 deletions

View file

@ -2,7 +2,7 @@ local Plugin = { "akinsho/bufferline.nvim" }
Plugin.version = "*"
Plugin.dependencies = "nvim-tree/nvim-web-devicons"
Plugin.event = 'VeryLazy'
Plugin.event = "VeryLazy"
function Plugin.init()
vim.opt.termguicolors = true
@ -10,21 +10,27 @@ end
Plugin.opts = {
options = {
mode = 'buffers',
themable = false,
diagnostics = "nvim_lsp",
mode = "buffers",
offsets = {
{filetype = 'neo-tree'},
{ filetype = "neo-tree", text = "File Tree", separator = true },
},
separator_style = "slant",
show_buffer_close_icons = false,
show_close_icon = false,
},
-- :help bufferline-highlights
highlights = {
buffer_selected = {
italic = false
italic = false,
},
indicator_selected = {
fg = {attribute = 'fg', highlight = 'Function'},
italic = false
}
}
fg = { attribute = "fg", highlight = "Function" },
italic = false,
},
},
}
return Plugin

View file

@ -1,7 +1,7 @@
local Plugin = {'lukas-reineke/indent-blankline.nvim'}
local Plugin = { "lukas-reineke/indent-blankline.nvim" }
Plugin.main = 'ibl'
Plugin.event = {'BufReadPost', 'BufNewFile'}
Plugin.main = "ibl"
Plugin.event = { "BufReadPost", "BufNewFile" }
-- See :help ibl.setup()
Plugin.opts = {
@ -10,7 +10,7 @@ Plugin.opts = {
enabled = false,
},
indent = {
char = '',
char = "",
},
}