21 lines
388 B
Lua
21 lines
388 B
Lua
|
return {
|
||
|
"nvim-lualine/lualine.nvim", -- status line
|
||
|
dependencies = {
|
||
|
"kyazdani42/nvim-web-devicons", -- for filetype icons
|
||
|
},
|
||
|
opts = {
|
||
|
options = {
|
||
|
-- disable separators
|
||
|
section_separators = "",
|
||
|
component_separators = "",
|
||
|
|
||
|
-- color scheme
|
||
|
theme = "tokyonight",
|
||
|
},
|
||
|
-- hide filename
|
||
|
sections = {
|
||
|
lualine_c = {},
|
||
|
},
|
||
|
},
|
||
|
}
|