mirror of
https://github.com/denisidoro/navi
synced 2024-11-21 19:13:07 +00:00
Merge pull request #870 from strboul/vim-colors
Add vim docs about cheat syntax highlighting
This commit is contained in:
commit
6968a23919
1 changed files with 13 additions and 0 deletions
13
docs/vim.md
Normal file
13
docs/vim.md
Normal file
|
@ -0,0 +1,13 @@
|
|||
## vim
|
||||
|
||||
If you want syntax highlighting support for Navi in Vim, add those syntax rules
|
||||
to your syntax files such as at `$VIMRUNTIME/syntax/navi.vim`.
|
||||
The rules are defined based on the [Cheatsheet syntax](cheatsheet_syntax.md).
|
||||
|
||||
```vim
|
||||
syntax match Comment "\v^;.*$"
|
||||
syntax match Statement "\v^\%.*$"
|
||||
syntax match Operator "\v^\#.*$"
|
||||
syntax match String "\v\<.*\>"
|
||||
syntax match String "\v^\$.*$"
|
||||
```
|
Loading…
Reference in a new issue