feat(extension): Extension for the Mundo plugin (#740)
* Add an extension for the mundo plugin * List the mundo extension
This commit is contained in:
parent
588cf4185b
commit
8f75e65878
|
@ -756,6 +756,7 @@ extensions = {'quickfix'}
|
||||||
- fugitive
|
- fugitive
|
||||||
- fzf
|
- fzf
|
||||||
- man
|
- man
|
||||||
|
- mundo
|
||||||
- neo-tree
|
- neo-tree
|
||||||
- nerdtree
|
- nerdtree
|
||||||
- nvim-dap-ui
|
- nvim-dap-ui
|
||||||
|
|
|
@ -0,0 +1,20 @@
|
||||||
|
local M = {}
|
||||||
|
|
||||||
|
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
|
||||||
|
},
|
||||||
|
lualine_y = { "progress" },
|
||||||
|
lualine_z = { "location" },
|
||||||
|
}
|
||||||
|
|
||||||
|
M.filetypes = {
|
||||||
|
"Mundo",
|
||||||
|
"MundoDiff",
|
||||||
|
}
|
||||||
|
|
||||||
|
return M
|
Loading…
Reference in New Issue