summaryrefslogtreecommitdiffstats
path: root/config.vim
diff options
context:
space:
mode:
authorAdam Stankiewicz <sheerun@sher.pl>2019-03-10 21:16:44 +0100
committerAdam Stankiewicz <sheerun@sher.pl>2019-03-10 21:16:48 +0100
commit5005f1e27a9a600822a16363eff5ee76bc130331 (patch)
tree34719f33b830aaa69e222aae031342ba2a97c426 /config.vim
parent571f76e6b62ef4535322345094b23605d7308e72 (diff)
downloadvim-polyglot-5005f1e27a9a600822a16363eff5ee76bc130331.tar.gz
vim-polyglot-5005f1e27a9a600822a16363eff5ee76bc130331.zip
Add csv plugin, closes #239
Diffstat (limited to 'config.vim')
-rw-r--r--config.vim8
1 files changed, 8 insertions, 0 deletions
diff --git a/config.vim b/config.vim
index a141e596..7d7d1f27 100644
--- a/config.vim
+++ b/config.vim
@@ -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