Add csv plugin, closes #239

This commit is contained in:
Adam Stankiewicz
2019-03-10 21:16:44 +01:00
parent 571f76e6b6
commit 5005f1e27a
7 changed files with 3429 additions and 1 deletions

View File

@@ -3,6 +3,14 @@ if !exists('g:jsx_ext_required')
let g:jsx_ext_required = 0
endif
" Make csv loading faster
if !exists('g:csv_start')
let g:csv_start = 1
endif
if !exists('g:csv_end')
let g:csv_end = 2
endif
" Disable json concealing by default
if !exists('g:vim_json_syntax_conceal')
let g:vim_json_syntax_conceal = 0