25 lines
463 B
Lua
25 lines
463 B
Lua
|
|
-- Using opts (recommended when no custom logic is needed)
|
|
return {
|
|
"nvim-lualine/lualine.nvim",
|
|
dependencies = { 'nvim-tree/nvim-web-devicons' },
|
|
opts = {
|
|
options = {
|
|
theme = "dracula",
|
|
section_separators = "",
|
|
component_separators = "",
|
|
},
|
|
sections = {
|
|
lualine_c = {
|
|
{
|
|
'filename',
|
|
path=1
|
|
},
|
|
},
|
|
lualine_x = {},
|
|
lualine_y = {},
|
|
lualine_z = {},
|
|
},
|
|
},
|
|
}
|