Add configuration option to conceal links and enabling cleaner folds

This commit is contained in:
Alex Vear
2019-09-22 19:25:25 +01:00
parent c47ffd4ec6
commit 8f83aae020
4 changed files with 82 additions and 18 deletions

View File

@@ -6,6 +6,11 @@
" Website: https://github.com/axvr/org.vim
" Last Change: 2019-09-22
" Fallback chain for options. Buffer local --> Global --> default.
function org#option(name, default)
return get(b:, a:name, get(g:, a:name, a:default))
endfunction
if !exists('g:org_state_keywords')
let g:org_state_keywords = ['TODO', 'NEXT', 'DONE']
endif