nvim/lua/plugin/lualine.lua

60 lines
1.3 KiB
Lua
Raw Normal View History

2024-05-30 22:05:42 +02:00
require('lualine').hide()
require('lualine').setup {
options = {
2024-05-30 22:00:46 +02:00
-- icons_enabled = true,
icons_enabled = false,
-- theme = 'base16',
theme = 'dracula',
-- component_separators = { left = '', right = ''},
-- section_separators = { left = '', right = ''},
component_separators = { left = '', right = ''},
section_separators = { left = '', right = ''},
disabled_filetypes = {
statusline = {},
winbar = {},
},
ignore_focus = {},
always_divide_middle = true,
globalstatus = false,
refresh = {
statusline = 1000,
tabline = 1000,
winbar = 1000,
}
},
sections = {
2024-05-30 22:00:46 +02:00
lualine_a = {},
lualine_b = {},
lualine_c = {},
lualine_x = {},
lualine_y = {},
2024-05-30 22:00:46 +02:00
lualine_z = {'buffers'}
},
inactive_sections = {
lualine_a = {},
lualine_b = {},
lualine_c = {'filename'},
lualine_x = {'location'},
lualine_y = {},
lualine_z = {}
},
2024-05-30 22:00:46 +02:00
tabline = {
-- lualine_a = {'buffers'},
-- lualine_b = {},
-- lualine_c = {},
-- lualine_x = {},
-- lualine_y = {},
-- lualine_z = {}
},
winbar = {
-- lualine_a = {'buffers'},
-- lualine_b = {},
-- lualine_c = {},
-- lualine_x = {},
-- lualine_y = {},
-- lualine_z = {}
},
inactive_winbar = {},
extensions = {}
}