https://github.com/kjuly/dotvim
My vim configuration.
https://github.com/kjuly/dotvim
Last synced: 22 days ago
JSON representation
My vim configuration.
- Host: GitHub
- URL: https://github.com/kjuly/dotvim
- Owner: Kjuly
- Created: 2011-12-26T06:59:17.000Z (over 13 years ago)
- Default Branch: master
- Last Pushed: 2012-05-19T07:48:49.000Z (almost 13 years ago)
- Last Synced: 2025-02-10T08:22:06.679Z (3 months ago)
- Language: VimL
- Homepage:
- Size: 12.2 MB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
### Usage:
Init:
git clone [email protected]:Kjuly/dotvim.git ~/.vim
cp vimrc-sample ~/.vimrc
cp gvimrc-sample ~/.gvimrc
cd ~/.vim
git submodule init
git submodule updateUpdate a plugin:
cd ~/.vim/bundle/theplugin
git pull origin masterUpdate all bundled plugins:
cd ~/.vim
git submodule foreach git pull origin masterAdd a new plugin:
cd ~/.vim
git submodule add [email protected]:username/plugin.git bundle/plugin_name
git add .
git ci -m "New plugin as a submodule"