update readme
This commit is contained in:
parent
add2b209cd
commit
c8727bfbf0
1 changed files with 36 additions and 1 deletions
37
README.md
37
README.md
|
@ -2,6 +2,41 @@ Xonsh syntax file from vim. Mostly stolen from python_vim and PRs are welcome!
|
||||||
|
|
||||||
### Install
|
### Install
|
||||||
|
|
||||||
|
#### The old school, manual way
|
||||||
|
|
||||||
```
|
```
|
||||||
git clone --depth 1 https://github.com/linkinpark342/xonsh-vim ~/.vim
|
git clone --depth 1 https://github.com/celediel/xonsh-vim ~/.vim
|
||||||
|
```
|
||||||
|
|
||||||
|
#### Or using your favourite plugin manager
|
||||||
|
|
||||||
|
#### neovim:
|
||||||
|
|
||||||
|
##### Packer
|
||||||
|
|
||||||
|
```lua
|
||||||
|
require('packer').startup(function()
|
||||||
|
use {'celediel/xonsh-vim'}
|
||||||
|
end)
|
||||||
|
```
|
||||||
|
|
||||||
|
##### Paq
|
||||||
|
|
||||||
|
```lua
|
||||||
|
require "paq" {
|
||||||
|
{'celediel/xonsh-vim'};
|
||||||
|
}
|
||||||
|
```
|
||||||
|
#### neovim or vim:
|
||||||
|
|
||||||
|
##### vim-plug
|
||||||
|
|
||||||
|
```vim
|
||||||
|
Plug 'celediel/xonsh-vim'
|
||||||
|
```
|
||||||
|
|
||||||
|
##### dein
|
||||||
|
|
||||||
|
```vim
|
||||||
|
call dein#add('celediel/xonsh-vim')
|
||||||
```
|
```
|
||||||
|
|
Loading…
Add table
Reference in a new issue