Added support for vim-addon-manager, fixed indentation
Without proper indenting code snippets break list
This commit is contained in:
parent
e8922aebeb
commit
3b9c6706ca
28
README.md
28
README.md
@ -30,10 +30,10 @@ required files into your `.vim` folder.
|
|||||||
1. Setup the [vundle](https://github.com/gmarik/vundle) package manager
|
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)
|
2. Set the bundles for [Neocomplecache](https://github.com/Shougo/neocomplcache) and [Neobundle](https://github.com/Shougo/neosnippet)
|
||||||
|
|
||||||
```
|
```
|
||||||
Bundle 'Shougo/neocomplcache.git'
|
Bundle 'Shougo/neocomplcache.git'
|
||||||
Bundle 'Shougo/neosnippet.git'
|
Bundle 'Shougo/neosnippet.git'
|
||||||
```
|
```
|
||||||
|
|
||||||
3. Open up Vim and start installation with `:BundleInstall`
|
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
|
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)
|
2. Set the bundles for [Neocomplecache](https://github.com/Shougo/neocomplcache) and [Neobundle](https://github.com/Shougo/neosnippet)
|
||||||
|
|
||||||
```
|
```
|
||||||
NeoBundle 'Shougo/neocomplcache.git'
|
NeoBundle 'Shougo/neocomplcache.git'
|
||||||
NeoBundle 'Shougo/neosnippet.git'
|
NeoBundle 'Shougo/neosnippet.git'
|
||||||
```
|
```
|
||||||
|
|
||||||
3. Open up Vim and start installation with `:NeoBundleInstall`
|
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
|
Configuration
|
||||||
-------------
|
-------------
|
||||||
|
|
||||||
|
5
addon-info.json
Normal file
5
addon-info.json
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
{
|
||||||
|
"dependencies": {
|
||||||
|
"neocomplcache": {}
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user