23 lines
516 B
Lua
23 lines
516 B
Lua
return {
|
|
"nvim-lualine/lualine.nvim",
|
|
opts = {
|
|
options = {
|
|
globalstatus = false,
|
|
},
|
|
inactive_sections = {
|
|
lualine_a = {},
|
|
lualine_b = {},
|
|
lualine_c = {
|
|
{
|
|
"filename",
|
|
file_status = true, -- displays file status (readonly status, modified status)
|
|
path = 1, -- 0 = just filename, 1 = relative path, 2 = absolute path
|
|
},
|
|
},
|
|
lualine_x = { "location", "overseer" },
|
|
lualine_y = {},
|
|
lualine_z = {},
|
|
},
|
|
},
|
|
}
|