diff --git a/README.md b/README.md index 6529e92..0666378 100644 --- a/README.md +++ b/README.md @@ -755,6 +755,7 @@ extensions = {'quickfix'} - fern - fugitive - fzf +- man - nerdtree - neo-tree - nvim-tree diff --git a/lua/lualine/extensions/man.lua b/lua/lualine/extensions/man.lua new file mode 100644 index 0000000..ba976de --- /dev/null +++ b/lua/lualine/extensions/man.lua @@ -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