20 lines
388 B
Lua
20 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 = {},
|
|
},
|
|
},
|
|
}
|