Fix conceal mayham with polyglot/indentguides

This commit is contained in:
David Holland 2020-03-25 14:30:07 +01:00
parent 7adef81f86
commit 21d5a93e4d
Signed by: DustVoice
GPG Key ID: 47068995A14EDCA9
1 changed files with 10 additions and 7 deletions

View File

@ -207,6 +207,10 @@ if g:use_pandoc == 1
Plug 'vim-pandoc/vim-pandoc-syntax'
endif
if g:use_indentguides == 1
Plug 'thaerkh/vim-indentguides'
endif
if g:use_polyglot == 1
Plug 'sheerun/vim-polyglot'
endif
@ -223,10 +227,6 @@ if g:use_asm_indent == 1
Plug 'philj56/vim-asm-indent'
endif
if g:use_indentguides == 1
Plug 'thaerkh/vim-indentguides'
endif
if g:use_sxhkd == 1
Plug 'kovetskiy/sxhkd-vim'
endif
@ -336,9 +336,11 @@ au BufNewFile,BufRead *.s,*.S call SetupArm() " arm = armv6/7
" ===
" Indentguides config
" ===
let g:indentguides_spacechar = '•'
let g:indentguides_tabchar = '|'
let g:indentguides_firstlevel = 1
if g:use_indentguides
let g:indentguides_spacechar = '•'
let g:indentguides_tabchar = '|'
let g:indentguides_firstlevel = 1
endif
" ===
" ===
@ -424,6 +426,7 @@ let $NVIM_TUI_ENABLE_TRUE_COLOR=1
" ===
if g:use_polyglot == 1
let g:polyglot_disabled = ['latex']
let g:vim_markdown_conceal = 0
endif
" ===