24 lines
649 B
Lua
24 lines
649 B
Lua
-- config.lualine is simply `return '<THEME>'`, this is used to avoid lualine error
|
|
local theme = require 'config.lualine' or 'auto'
|
|
|
|
return {
|
|
{
|
|
'nvim-lualine/lualine.nvim',
|
|
dependencies = { 'nvim-tree/nvim-web-devicons' },
|
|
opts = {
|
|
options = {
|
|
theme = theme,
|
|
section_separators = { left = '/', right = '/' },
|
|
component_separators = { left = '/', right = '/' },
|
|
},
|
|
sections = {
|
|
lualine_a = {'mode'},
|
|
lualine_b = {'filename'},
|
|
lualine_c = {''},
|
|
lualine_x = {'filetype'},
|
|
lualine_y = {'progress'},
|
|
lualine_z = {'location'},
|
|
},
|
|
},
|
|
},
|
|
}
|