diff options
| author | Xander Swan <email> | 2025-12-03 10:00:41 -0500 |
|---|---|---|
| committer | Xander Swan <email> | 2025-12-03 10:00:41 -0500 |
| commit | 88e4f6e4398ad700e6e57843a4d72eb63a6bb79c (patch) | |
| tree | 1e62771aecfc1b5709252e231eed15f7dcc946f0 /.config/nvim/syntax/ox.vim | |
| parent | ddff0d6d7042d87fde369a745cbf704752311563 (diff) | |
Remove nvim highlighting
Diffstat (limited to '.config/nvim/syntax/ox.vim')
| -rw-r--r-- | .config/nvim/syntax/ox.vim | 51 |
1 files changed, 0 insertions, 51 deletions
diff --git a/.config/nvim/syntax/ox.vim b/.config/nvim/syntax/ox.vim deleted file mode 100644 index c5abff4..0000000 --- a/.config/nvim/syntax/ox.vim +++ /dev/null @@ -1,51 +0,0 @@ -if exists("b:current_syntax") - finish -endif - -syn keyword oxTodo contained TODO FIXME HACK -syn match oxComment /\/\/.*$/ contains=oxTodo -syn region oxMComment start=/\/\*/ end=/\*\// - -syn keyword oxStatement return var break continue -syn keyword oxFunc fn -syn keyword oxRepeat for while -syn keyword oxDeclaration fn var -syn keyword oxStructure class enum -syn keyword oxConstants true false -syn keyword oxConditional if else -syn keyword oxStorageClass global local - -syn keyword oxOperator and or -syn match oxSymOperator /[+\-\*/%]|[\>\<\=\!]\=?/ - -syn match oxIdentifier /[A-z_]+[A-z0-9_]*/ - -syn match oxNumber /\<\d\+\>/ -syn match oxNumber /\<\d\+\.\d*\%([eE][-+]\=\d\+\)\=/ -syn match oxNumber /\.\d\+\%([eE][-+]\=\d\+\)\=\>/ -syn match oxNumber /\<\d\+[eE][-+]\=\d\+\>/ - -syn match oxEscape contained /\\[ntr\\\"']/ -syn match oxStringD /\".*\"/ contains=oxEscape -syn match oxStringS /\'.*\'/ contains=oxEscape -syn match oxType /(?<=\:)\s*[A-z_]+[A-z0-9_]*/ - -let b:current_syntax = "ox" - -hi def link oxComment Comment -hi def link oxMComment Comment -hi def link oxStatement Statement -hi def link oxFunc Function -hi def link oxDeclaration Statement -hi def link oxRepeat Repeat -hi def link oxIdentifier Identifier -hi def link oxNumber Number -hi def link oxStringD String -hi def link oxStringS String -hi def link oxConstants Constant -hi def link oxOperator Operator -hi def link oxSymOperator Operator -hi def link oxConditional Conditional -hi def link oxStructure Structure -hi def link oxStorageClass StorageClass -hi def link oxType Type |
