1
0
mirror of https://github.com/aquatix/dotfiles.git synced 2025-12-06 21:45:10 +01:00

Do not conceal links and such in Markdown

This commit is contained in:
2019-08-28 10:25:13 +02:00
parent 4a347a4ee1
commit bdac14c102

6
.vimrc
View File

@@ -385,12 +385,12 @@ let g:ale_linters = {
" Handy Markdown stuff
"Plugin 'tpope/vim-markdown'
Plugin 'godlygeek/tabular'
Plugin 'plasticboy/vim-markdown'
" Do not fold markdown files by default
let g:vim_markdown_folding_disabled = 1
set nofoldenable
let g:vim_markdown_conceal = 0
Plugin 'godlygeek/tabular'
Plugin 'plasticboy/vim-markdown'
" Use filetype name as fenced code block languages for syntax highlighting
let g:vim_markdown_fenced_languages = ['c++=cpp', 'viml=vim', 'bash=sh', 'ini=dosini', 'python=python']