|
| ▲ | OJFord 5 days ago | parent | next [-] |
| There is no issue? I'm answering the question. This is how I do it too. (There's sort of an issue in that I'd prefer to get it in neovim/lua, but that's not the point here.) |
| |
|
| ▲ | gitaarik 5 days ago | parent | prev [-] |
| Yeah and if you have 10 plugins you have to go into each folder and git pull. Then you might want to write a script for that. Or just use a plugin manager ;) |
| |
| ▲ | freedomben 5 days ago | parent | next [-] | | I just wrote a simple bash script that has an array at the top with all the git remotes, and it iterates through them and git pulls (or clones if it doesn't exist yet). Took me like 10 minutes to write ~15 years ago and hasn't needed any changes. I can also trivially add a new entry to the array if I want to add a new plugin, or delete one if I'm not using it anymore. Then I also have a history of everything that changed so I can easily roll back if something breaks (which has happened several times) | |
| ▲ | dboon 5 days ago | parent | prev [-] | | git submodule update —init | | |
| ▲ | gitaarik 5 days ago | parent [-] | | Yeah, I also used submodules first. But removing a git submodule is a bit of a pain. Like 3 or 4 steps or something, which I usually need to look up how to do it again. And if you're experimenting with new plugins, trying them out, installing them and then removing them again, it's a lot easier with a plugin manager. |
|
|