mirror of
https://github.com/denisidoro/navi
synced 2024-11-22 03:23:05 +00:00
13 lines
401 B
Markdown
13 lines
401 B
Markdown
## 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^\$.*$"
|
|
```
|