Merge pull request #870 from strboul/vim-colors

Add vim docs about cheat syntax highlighting
This commit is contained in:
Denis Isidoro 2024-01-06 13:44:01 -03:00 committed by GitHub
commit 6968a23919
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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^\$.*$"
```