00e98d207c
This will be used with Neovim's built-in `:Man` command and `man` filetype.
17 lines
245 B
Lua
17 lines
245 B
Lua
local M = {}
|
|
|
|
M.sections = {
|
|
lualine_a = {
|
|
function()
|
|
return 'MAN'
|
|
end,
|
|
},
|
|
lualine_b = { { 'filename', file_status = false } },
|
|
lualine_y = { 'progress' },
|
|
lualine_z = { 'location' },
|
|
}
|
|
|
|
M.filetypes = { 'man' }
|
|
|
|
return M
|