feat: first draft

This commit is contained in:
Steven Arcangeli 2022-12-15 02:24:27 -08:00
parent bf2dfb970d
commit fefd6ad5e4
48 changed files with 7201 additions and 1 deletions

7
syntax/oil.vim Normal file
View file

@ -0,0 +1,7 @@
if exists("b:current_syntax")
finish
endif
syn match oilId /^\/\d* / conceal
let b:current_syntax = "oil"

11
syntax/oil_preview.vim Normal file
View file

@ -0,0 +1,11 @@
if exists("b:current_syntax")
finish
endif
syn match oilCreate /^CREATE /
syn match oilMove /^ MOVE /
syn match oilDelete /^DELETE /
syn match oilCopy /^ COPY /
syn match oilChange /^CHANGE /
let b:current_syntax = "oil_preview"