https://github.com/horance-liu/vim-plugins
the collection of vim plugins.
https://github.com/horance-liu/vim-plugins
Last synced: 14 days ago
JSON representation
the collection of vim plugins.
- Host: GitHub
- URL: https://github.com/horance-liu/vim-plugins
- Owner: horance-liu
- Created: 2016-10-22T03:58:31.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2016-10-22T13:55:01.000Z (over 8 years ago)
- Last Synced: 2025-04-15T01:16:24.564Z (14 days ago)
- Language: VimL
- Size: 903 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# vim-plugins
The collection of vim plugins.
## Backup
```bash
$ mv ~/.vimrc ~/.vimrc-bak
$ mv ~/.vim ~/.vim-bak
```## Install
```sh
$ git clone [email protected]:horance-liu/vim-plugins.git ~/.vim
$ cd ~/.vim
$ cp .vimrc ..
```## Install RVM
- 修改RVM源
```bash
$ echo "ruby_url=https://ruby.taobao.org/mirrors/ruby" > ~/.rvm/user/db
```## Command-t
- open vim, and to seee ruby version
```bash
:ruby puts "#{RUBY_VERSION}-p#{RUBY_PATCHLEVEL}"
2.0.0-p648
```- to see system ruby version
```bash
$ ruby --version
2.2.1p85
```- so, to install ruby version of vim
e 2.0.0-p648``bash
$ rvm install 2.0.0-p648
$ rvm use 2.0.0-p648
```- compile command-t
```bash
$ cd ~/.vim/bundle/command-t/ruby/command-t
$ ruby extconf.rb
$ make
```