feat: Add an extension for man pages (#714)
This will be used with Neovim's built-in `:Man` command and `man` filetype.
This commit is contained in:
parent
3362b28f91
commit
00e98d207c
|
@ -755,6 +755,7 @@ extensions = {'quickfix'}
|
|||
- fern
|
||||
- fugitive
|
||||
- fzf
|
||||
- man
|
||||
- nerdtree
|
||||
- neo-tree
|
||||
- nvim-tree
|
||||
|
|
|
@ -0,0 +1,16 @@
|
|||
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
|
Loading…
Reference in New Issue