Added support for vim-addon-manager, fixed indentation

Without proper indenting code snippets break list
This commit is contained in:
ZyX 2013-03-03 19:19:22 +04:00
parent e8922aebeb
commit 3b9c6706ca
2 changed files with 25 additions and 8 deletions

View File

@ -30,10 +30,10 @@ required files into your `.vim` folder.
1. Setup the [vundle](https://github.com/gmarik/vundle) package manager
2. Set the bundles for [Neocomplecache](https://github.com/Shougo/neocomplcache) and [Neobundle](https://github.com/Shougo/neosnippet)
```
Bundle 'Shougo/neocomplcache.git'
Bundle 'Shougo/neosnippet.git'
```
```
Bundle 'Shougo/neocomplcache.git'
Bundle 'Shougo/neosnippet.git'
```
3. Open up Vim and start installation with `:BundleInstall`
@ -42,13 +42,25 @@ Bundle 'Shougo/neosnippet.git'
1. Setup the [neobundle](https://github.com/Shougo/neobundle.vim) package manager
2. Set the bundles for [Neocomplecache](https://github.com/Shougo/neocomplcache) and [Neobundle](https://github.com/Shougo/neosnippet)
```
NeoBundle 'Shougo/neocomplcache.git'
NeoBundle 'Shougo/neosnippet.git'
```
```
NeoBundle 'Shougo/neocomplcache.git'
NeoBundle 'Shougo/neosnippet.git'
```
3. Open up Vim and start installation with `:NeoBundleInstall`
### VAM (vim-addon-manager)
1. Setup the [vim-addon-manager](https://github.com/MarcWeber/vim-addon-manager)
package manager.
2. Add `neosnippet` to the list of addons in your vimrc:
```vim
call vam#ActivateAddons(['neosnippet'])
```
. Installation will start automatically when you open vim next time.
Configuration
-------------

5
addon-info.json Normal file
View File

@ -0,0 +1,5 @@
{
"dependencies": {
"neocomplcache": {}
}
}