trevorhauter / gitportal.nvim

Easily generate or ingest shareable permalinks to get to the files you want. Fast.
MIT License
5 stars 0 forks source link

Configure plugin so that calling "Set up" isn't required! #2

Closed trevorhauter closed 2 months ago

trevorhauter commented 2 months ago

What the title says. Currently, if I am loading this with lazy vim, I must configure it like this

return { 
  'trevorhauter/gitlinks.nvim', 
  config = function()
    require('gitlinks') -- This will load lua/gitlinks/init.lua
  end,
}

I'd like to skip the config part. The simpler the better.

trevorhauter commented 2 months ago

This issue is misleading. Obviously, setup wasn't invoked here. We just required the plugin. I'm not sure what I was doing here.