https://github.com/vinatorul/myvimconfig
https://github.com/vinatorul/myvimconfig
Last synced: 6 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/vinatorul/myvimconfig
- Owner: Vinatorul
- Created: 2016-02-21T14:08:59.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2016-02-21T17:01:30.000Z (over 10 years ago)
- Last Synced: 2024-12-27T00:41:41.734Z (over 1 year ago)
- Language: VimL
- Size: 3.91 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
### Hello, this is my vim config
Make sure that you backup your own .vimrc
```bash
mv ~/.vimrc ~/backup.vimrc
```
Then clone this repo and replace config
```bash
$ git clone https://github.com/Vinatorul/MyVimConfig.git && cd MyVimConfig # clone repo
$ mv .vimrc ~/.vimrc -i # move .vimrc
$ cd .. && rm -rf MyVimConfig # delete repo
```
You will also need to install [Vundle](https://github.com/VundleVim/Vundle.vim) and then install all plugins
```vim
:PluginInstall
```
Plugin [YouCompleteMe](https://github.com/Valloric/YouCompleteMe) also need a special installation after runnig Vundle install
```bash
cd ~/.vim/bundle/YouCompleteMe
./install.py --racer-completer
```