commit b8bd99553bc289d95f4396d020bd32a81a0fc60b
parent 4e725c13b36f9426d4bfb2bb6a1a018a0bbfcc55
Author: Alex Balgavy <a.balgavy@gmail.com>
Date: Tue, 28 Jan 2020 02:43:08 +0100
vim: don't need plasticboy's markdown, the Pope's files ship with vim
Former-commit-id: 3a33d8450a4d418a1f3824980c892c350d1282f9
Diffstat:
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/vim/vimrc b/vim/vimrc
@@ -116,9 +116,6 @@ Plug 'joom/latex-unicoder.vim'
" Smooth ^U/^D scrolling
Plug 'psliwka/vim-smoothie'
-" Markdown support
-Plug 'plasticboy/vim-markdown'
-
" Asynchronous popery
Plug 'tpope/vim-dispatch'
@@ -499,6 +496,9 @@ filetype plugin indent on
" Syntax highlighting
syntax on
+" Enable fenced code highlighting in markdown (tpope's plugin, ships with vim)
+let g:markdown_fenced_languages = ['html', 'python', 'ruby', 'bash=sh', 'map']
+
" Folding on indentation
set foldmethod=indent
set foldlevelstart=5 " start with up to 5 levels open