We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Currently, I could disable vim conceal feature with latex via let g:tex_conceal = "" like below
conceal
let g:tex_conceal = ""
But how could I disable all conceal feature in all files within SpaceVim? Like no conceal in markdown.
How could I do this in init.vim and init.toml in both case?
init.vim
init.toml
tex
Disable conceal feature with latex via let g:tex_conceal = ""
More details: Gabirel/Hack-SpaceVim#44
markdown
Disable conceal feature let g:markdown_syntax_conceal = 0 Ref: #3245 (comment)
let g:markdown_syntax_conceal = 0
The text was updated successfully, but these errors were encountered:
Too many plugins use this feature, indentline vim-tex etc. spacevim do not change conceal option. you can config it in bootstrap function.
Sorry, something went wrong.
in markdown layer, there is let g:markdown_syntax_conceal = 0, so it is disabled by default.
closed, This only can be done in bootstrap function.
No branches or pull requests
Expected behavior
Currently, I could disable vim
conceal
feature with latex vialet g:tex_conceal = ""
like belowBut how could I disable all conceal feature in all files within SpaceVim? Like no conceal in markdown.
How could I do this in
init.vim
andinit.toml
in both case?Summary
In
tex
Disable
conceal
feature with latex vialet g:tex_conceal = ""
More details: Gabirel/Hack-SpaceVim#44
In
markdown
Disable
conceal
featurelet g:markdown_syntax_conceal = 0
Ref: #3245 (comment)
The text was updated successfully, but these errors were encountered: