Add vim docs about cheat syntax highlighting

This commit is contained in:
Metin Yazici 2024-01-05 15:40:49 +01:00
parent 9e20adeb41
commit b72a8f9699
No known key found for this signature in database

13
docs/vim.md Normal file
View 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^\$.*$"
```