pain v2
This commit is contained in:
parent
6c5f5a75d4
commit
ac7a6d8926
5 changed files with 30 additions and 38 deletions
18
nvim/lua/plugins/barbar.lua
Normal file
18
nvim/lua/plugins/barbar.lua
Normal file
|
@ -0,0 +1,18 @@
|
|||
return {
|
||||
'romgrk/barbar.nvim',
|
||||
dependencies = {
|
||||
'lewis6991/gitsigns.nvim',
|
||||
'nvim-tree/nvim-web-devicons'
|
||||
},
|
||||
init = function () vim.g.barbar_auto_setup = false end,
|
||||
opts = {
|
||||
animation = true,
|
||||
auto_hide = 0,
|
||||
|
||||
preset = 'slanted',
|
||||
|
||||
sidebar_filetypes = {
|
||||
['neo-tree'] = true
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,28 +0,0 @@
|
|||
return {
|
||||
{
|
||||
'akinsho/bufferline.nvim',
|
||||
config = function ()
|
||||
require('bufferline').setup {
|
||||
options = {
|
||||
separator_style = "thin",
|
||||
indicator = {
|
||||
style = "none"
|
||||
},
|
||||
diagnostics = "nvim_lsp",
|
||||
always_show_bufferline = false,
|
||||
offsets = {
|
||||
{
|
||||
filetype = "neo-tree",
|
||||
text = "Explorer",
|
||||
highlight = "directory",
|
||||
separator = false
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
end,
|
||||
dependencies = {
|
||||
'nvim-tree/nvim-web-devicons',
|
||||
},
|
||||
},
|
||||
}
|
9
nvim/lua/plugins/indent-blankline.lua
Normal file
9
nvim/lua/plugins/indent-blankline.lua
Normal file
|
@ -0,0 +1,9 @@
|
|||
return {
|
||||
'lukas-reineke/indent-blankline.nvim',
|
||||
main = "ibl",
|
||||
opts = {
|
||||
indent = {
|
||||
char = "│"
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue