30 lines
536 B
Lua
30 lines
536 B
Lua
return {
|
|
{
|
|
"nvim-lualine/lualine.nvim",
|
|
event = "VeryLazy",
|
|
dependencies = {
|
|
"nvim-tree/nvim-web-devicons",
|
|
},
|
|
opts = {
|
|
options = {
|
|
icons_enabled = true,
|
|
theme = "tokyonight",
|
|
component_separators = { left = "", right = "" },
|
|
section_separators = { left = "", right = "" },
|
|
},
|
|
sections = {
|
|
lualine_c = {
|
|
{
|
|
"filename",
|
|
file_status = true,
|
|
path = 1,
|
|
symbols = {
|
|
modified = "●",
|
|
},
|
|
},
|
|
},
|
|
lualine_x = { "filetype" },
|
|
},
|
|
},
|
|
},
|
|
}
|