-- lua/plugins/PLUGIN_NAME.lua

-- ============================================================
-- HELPERS
-- ============================================================


-- ============================================================
-- SPEC
-- ============================================================
return {
  'user/repo',
  
  -- dependencies = {},
  -- lazy = false,
  -- event = '',
  -- cmd = '',
  -- ft = '',
  
  keys = {
    -- { '<leader>x', '<cmd>Cmd<cr>', desc = '' },
  },
  
  config = function()
    require('plugin').setup({
      -- options
    })
  end,
}
