neovim-config/lua/plugins/lualine.lua
Tyler Hallada 159122bb18 Configure lualine and bufferline the way I like
I use tabs and splits mostly, not buffers.
2023-12-01 15:26:03 -05:00

23 lines
504 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" },
lualine_y = {},
lualine_z = {},
},
},
}