|
|
|
|
|
by tatjam
307 days ago
|
|
I like the "dopamine hit" of changing a task from TODO to DONE that comes from colors. I use this very simple vim syntax file for that :) syntax match TODOKey "TODO" syntax match DONEKey "DONE" syntax match BLCKKey "BLCK" syntax match MAYBKey "MAYB" syntax match Comment "\/\/.*$" hi def link TODOKey DiagnosticWarn hi def link DONEKey Type hi def link BLCKKey DiagnosticError hi def link MAYBKey Constant hi def link Comment Comment |
|