diff --git a/doc/lualine.txt b/doc/lualine.txt index 3fc7f2e..6194e92 100644 --- a/doc/lualine.txt +++ b/doc/lualine.txt @@ -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 diff --git a/lua/lualine/extensions/mundo.lua b/lua/lualine/extensions/mundo.lua index e8be4aa..5ecf96f 100644 --- a/lua/lualine/extensions/mundo.lua +++ b/lua/lualine/extensions/mundo.lua @@ -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