tabbar is cool
This commit is contained in:
parent
9222164c4e
commit
6b32dcdd6c
20
init.lua
20
init.lua
|
@ -169,8 +169,26 @@ require('lazy').setup({
|
||||||
icons_enabled = false,
|
icons_enabled = false,
|
||||||
theme = 'onedark',
|
theme = 'onedark',
|
||||||
component_separators = '|',
|
component_separators = '|',
|
||||||
section_separators = '',
|
section_separators = '|',
|
||||||
},
|
},
|
||||||
|
--winbar = {} -- Not used, because `barbecue.nvim` uses it.
|
||||||
|
tabline = {
|
||||||
|
lualine_a = {'mode', 'branch'},
|
||||||
|
lualine_b = {'filename', 'diff', 'diagnostics'},
|
||||||
|
lualine_c = {'searchcount'},
|
||||||
|
lualine_x = {},
|
||||||
|
lualine_y = {},
|
||||||
|
lualine_z = {'windows', 'tabs'},
|
||||||
|
},
|
||||||
|
sections = {
|
||||||
|
lualine_a = {'mode'},
|
||||||
|
lualine_b = {},
|
||||||
|
lualine_c = {},
|
||||||
|
lualine_x = {'encoding', 'fileformat', 'filetype', 'filesize'},
|
||||||
|
lualine_y = {'progress'},
|
||||||
|
lualine_z = {'location', 'windows', 'tabs'}
|
||||||
|
},
|
||||||
|
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
|
@ -8,5 +8,14 @@ return {
|
||||||
},
|
},
|
||||||
opts = {
|
opts = {
|
||||||
-- configurations go here
|
-- configurations go here
|
||||||
|
theme = {
|
||||||
|
normal = {
|
||||||
|
-- bg = "#000000"
|
||||||
|
bold = true
|
||||||
|
},
|
||||||
|
--dirname = { bg = "#000000" },
|
||||||
|
--basename = { bg = "#888888" },
|
||||||
|
--context = { bg = "#DDDDDD" },
|
||||||
|
}
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,3 +1,3 @@
|
||||||
return {
|
return {
|
||||||
"SmiteshP/nvim-navic"
|
"SmiteshP/nvim-navic",
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue