Allow configuring TODO state keywords

This commit is contained in:
Alex Vear
2019-02-25 21:12:17 +00:00
parent c25e89e1e6
commit 6c1bd97a04
3 changed files with 40 additions and 5 deletions

9
plugin/org.vim Normal file
View File

@@ -0,0 +1,9 @@
" =============================================================
" Description: Set default config options for org.vim
" Author: Alex Vear (axvr) <av@axvr.io>
" Licence: ISC (2019)
" =============================================================
if !exists('g:org_state_keywords')
let g:org_state_keywords = ['TODO', 'NEXT', 'DONE']
endif