Disable conceal in latex
You may see some rendering issues in your latex files or you just want to use the original plain "text", add the code below into your init.vim
" See: http://vimdoc.sourceforge.net/htmldoc/syntax.html#g:tex_conceal
" Disable all conceal
let g:tex_conceal = ""
" Only disable math and superscripts/subscripts
let g:tex_conceal = "adg"
Explanation:
a = accents/ligatures
d = delimiters
m = math symbols
g = Greek
s = superscripts/subscripts
Reference
Disable conceal in latex
You may see some rendering issues in your latex files or you just want to use the original plain "text", add the code below into your
init.vimExplanation:
Reference