chore: autogen (vimdocs+formating)
This commit is contained in:
parent
8f75e65878
commit
655411fb7a
|
@ -459,7 +459,7 @@ Component specific options These are options that are available on
|
|||
|
||||
mode = 0, -- 0: Shows buffer name
|
||||
-- 1: Shows buffer index
|
||||
-- 2: Shows buffer name + buffer index
|
||||
-- 2: Shows buffer name + buffer index
|
||||
-- 3: Shows buffer number
|
||||
-- 4: Shows buffer name + buffer number
|
||||
|
||||
|
@ -800,6 +800,7 @@ extensions with:
|
|||
- fugitive
|
||||
- fzf
|
||||
- man
|
||||
- mundo
|
||||
- neo-tree
|
||||
- nerdtree
|
||||
- nvim-dap-ui
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue