17 lines
326 B
Lua
17 lines
326 B
Lua
|
return {
|
||
|
-- Set lualine as statusline
|
||
|
'nvim-lualine/lualine.nvim',
|
||
|
-- See `:help lualine.txt`
|
||
|
opts = {
|
||
|
options = {
|
||
|
icons_enabled = true,
|
||
|
theme = 'auto',
|
||
|
component_separators = '/',
|
||
|
section_separators = '',
|
||
|
},
|
||
|
},
|
||
|
dependencies = {
|
||
|
'nvim-tree/nvim-web-devicons', opt = true
|
||
|
},
|
||
|
}
|