| 1234567891011121314151617181920212223 | 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)]],}M.load = function(commands)  for _, command in ipairs(commands) do    vim.cmd(command)  endendreturn M
 |