mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-01-24 09:50:04 +08:00
36 lines
610 B
Markdown
36 lines
610 B
Markdown
|
# vim-jsonnet
|
||
|
|
||
|
[Jsonnet][jsonnet] filetype plugin for Vim.
|
||
|
|
||
|
[jsonnet]: http://jsonnet.org
|
||
|
|
||
|
![A screenshot of Jsonnet syntax highlighting](https://raw.githubusercontent.com/google/vim-jsonnet/master/jsonnet-screenshot.png)
|
||
|
|
||
|
# Install
|
||
|
|
||
|
To install via Vim plugin managers:
|
||
|
|
||
|
### Vundle
|
||
|
|
||
|
```viml
|
||
|
Plugin 'google/vim-jsonnet'
|
||
|
```
|
||
|
|
||
|
### vim-plug
|
||
|
|
||
|
```viml
|
||
|
Plug 'google/vim-jsonnet'
|
||
|
```
|
||
|
|
||
|
### Pathogen
|
||
|
|
||
|
```sh
|
||
|
git clone https://github.com/google/vim-jsonnet ~/.vim/bundle/vim-jsonnet
|
||
|
```
|
||
|
|
||
|
## More Info
|
||
|
|
||
|
For more info on Jsonnet:
|
||
|
* Jsonnet Website: http://jsonnet.org
|
||
|
* Jsonnet Repository: https://github.com/google/jsonnet
|