mirror of
https://github.com/Baipyrus/nvim-config.git
synced 2024-11-12 20:23:50 +00:00
15 lines
265 B
Lua
15 lines
265 B
Lua
|
return {
|
||
|
-- Set lualine as statusline
|
||
|
'nvim-lualine/lualine.nvim',
|
||
|
-- See `:help lualine.txt`
|
||
|
opts = {
|
||
|
options = {
|
||
|
icons_enabled = false,
|
||
|
theme = 'tokyonight',
|
||
|
component_separators = '|',
|
||
|
section_separators = '',
|
||
|
},
|
||
|
},
|
||
|
}
|
||
|
|