You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
-newbie
-following a tutorial series that uses lazy-nvim
-found out about this game
-want to try
-no lazy-nvim instruction found
-maybe having both Vim-plug and lazy-nvim is the way to go
-Internet says: "NO!"
-shit my pants
what do?? how to convert vim plug instruction to lazy-nvim instruction?
The text was updated successfully, but these errors were encountered:
Put this in lazy_init.lua(if you followed the tutorials from Prime's youtube):
{
"thePrimeagen/vim-be-good",
cmd = "VimBeGood",
config = function()
require("VimBeGood").setup {}
end,
},
Then create a vimbegood.lua file in your lazy folder where you have the plugin configs, where you will have to add this:
return {
"thePrimeagen/vim-be-good",
cmd = "VimBeGood",
config = function()
require("VimBeGood").setup {}
end,
}
You might still get some errors like I did, but it will work afterwards, good luck!
-newbie
-following a tutorial series that uses lazy-nvim
-found out about this game
-want to try
-no lazy-nvim instruction found
-maybe having both Vim-plug and lazy-nvim is the way to go
-Internet says: "NO!"
-shit my pants
what do?? how to convert vim plug instruction to lazy-nvim instruction?
The text was updated successfully, but these errors were encountered: