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:
Andy Freeland 2022-06-20 13:40:52 -07:00 committed by GitHub
parent 3362b28f91
commit 00e98d207c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 17 additions and 0 deletions

View File

@ -755,6 +755,7 @@ extensions = {'quickfix'}
- fern
- fugitive
- fzf
- man
- nerdtree
- neo-tree
- nvim-tree

View File

@ -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