https://github.com/scull7/my-vim-plugins
This is my ~/.vim/pack folder infrastructure for managing my vim plugins.
https://github.com/scull7/my-vim-plugins
Last synced: 7 months ago
JSON representation
This is my ~/.vim/pack folder infrastructure for managing my vim plugins.
- Host: GitHub
- URL: https://github.com/scull7/my-vim-plugins
- Owner: scull7
- License: mit
- Created: 2020-11-08T23:26:02.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2020-11-24T03:05:44.000Z (over 5 years ago)
- Last Synced: 2025-06-03T16:17:03.381Z (about 1 year ago)
- Language: Vim script
- Size: 5.86 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## Install the `.vimrc` configuration file
```sh
ls -l .vimrc ~/.vimrc
```
## Vim Pack Articles
### Installing Vim(8( plugins with the native pack system.
https://medium.com/@paulodiovani/installing-vim-8-plugins-with-the-native-pack-system-39b71c351fea
```sh
# make the pack folder a git repository
cd ~/.vim/pack
git init
# add as many plugins as you want in the desired
# package directories
# for example, lets add NERDtree and its git plugin
# as autoloaded in plugins/ directory
git submodule add https://github.com/scrooloose/nerdtree plugins/start/nerdtree
git submodule add https://github.com/Xuyuanp/nerdtree-git-plugin plugins/start/nerdtree-git-plugin
# lets also add the one color scheme in the colors/ directory
git submodule add https://github.com/rakr/vim-one.git colors/start/one
# and optinaly, we want the elixir syntax and compiler tools under syntax/
git submodule add https://github.com/elixir-lang/vim-elixir syntax/opt/elixir
# start vim and configure the plugins as desired :)
cd -
vim ~/.vimrc
# when need to update,
# it is just a matter of updating submodules
git submodule update --remote --merge
git commit
```