dotfiles-mirror/config/nvim/vim-graft
2025-10-04 17:47:25 +03:30
..
plugin suicide 2025-09-30 07:28:33 +03:30
config.rb updates 2025-10-04 17:47:25 +03:30
graft.rb suicide 2025-09-30 07:28:33 +03:30
LICENSE.txt suicide 2025-09-30 07:28:33 +03:30
Rakefile suicide 2025-09-30 07:28:33 +03:30
README suicide 2025-09-30 07:28:33 +03:30
README.txt suicide 2025-09-30 07:28:33 +03:30

[ Vim Graft ]

Simple plugin management for Vim, written in Ruby. Graft lets you configure which plugins to install using Ruby.

( Installation )

1. Clone (or download and extract) this repository wherever you prefer.

2. Edit config.rb - an example is provided. Set runtime to your desired Vim/Neovim directory (e.g., ~/.vim or ~/.local/share/nvim).

3. Add plugins to the plugins array. You can use GitHub shortcuts (user/repo) or full URLs.

4. Run the manager:

rake

5. Open Vim or Neovim and check that plugins are loaded:

:echo &runtimepath

Everything listed in config.rb will be installed automatically.

( Usage )

- To add a plugin: append it to the plugins array and rerun ./graft.rb.

- To remove a plugin: delete its entry from the array and remove its folder under pack/graft/start.

- If Installed into a run time path, you can use `:EditPlugins` and `:SyncPlugins` commands from Vim.