| 12345678910111213141516171819202122232425 | local M = {}M.defaults = {  [[  function! QuickFixToggle()    if empty(filter(getwininfo(), 'v:val.quickfix'))      copen    else      cclose    endif  endfunction  ]],  -- :LvimInfo  [[command! LvimInfo lua require('core.info').toggle_popup(vim.bo.filetype)]],  [[ command! LvimCacheReset lua require('bootstrap').reset_cache() ]],  [[ command! LvimUpdate lua require('bootstrap').update() ]],}M.load = function(commands)  for _, command in ipairs(commands) do    vim.cmd(command)  endendreturn M
 |