chore: autogen (vimdocs+formating)

This commit is contained in:
shadmansaleh 2022-07-15 11:53:29 +00:00 committed by github-actions[bot]
parent 8f75e65878
commit 655411fb7a
2 changed files with 8 additions and 8 deletions

View File

@ -800,6 +800,7 @@ extensions with:
- fugitive
- fzf
- man
- mundo
- neo-tree
- nerdtree
- nvim-dap-ui

View File

@ -4,17 +4,16 @@ M.sections = {
lualine_a = {
function()
local ft = vim.opt_local.filetype:get()
return (ft == "Mundo") and "Change tree"
or (ft == "MundoDiff") and "Change diff"
end
return (ft == 'Mundo') and 'Change tree' or (ft == 'MundoDiff') and 'Change diff'
end,
},
lualine_y = { "progress" },
lualine_z = { "location" },
lualine_y = { 'progress' },
lualine_z = { 'location' },
}
M.filetypes = {
"Mundo",
"MundoDiff",
'Mundo',
'MundoDiff',
}
return M