You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
266 B

-- Experimental vim-plug wrapper for use in `init.lua`s
local Plug = {
Begin = vim.fn['plug#begin']
_Plug = vim.fn['plug#']
End = vim.fn['plug#end']
include = function(repo, opts){
if(opts == {})
then
_Plug(repo)
else
_Plug(repo, opts)
end
}
}