From 45c2fa56d1a87d41bbdaaa553fd5b7a00d5ea32d Mon Sep 17 00:00:00 2001 From: Sebastian Burschel Date: Wed, 7 Apr 2021 15:41:21 +0200 Subject: [PATCH] Added markdown preview plugin --- dotfiles/.vimrc | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/dotfiles/.vimrc b/dotfiles/.vimrc index 849d892..52203b5 100644 --- a/dotfiles/.vimrc +++ b/dotfiles/.vimrc @@ -15,6 +15,9 @@ endif call plug#begin('~/.vim/bundle') + +Plug 'iamcco/markdown-preview.nvim', { 'do': { -> mkdp#util#install() }, 'for': ['markdown', 'vim-plug']} + " Add git changes to front of the line Plug 'airblade/vim-gitgutter' @@ -286,6 +289,10 @@ let g:ale_fixers = {'python': ['isort', 'black'], \'tex': ['latexindent']} +" Markdown spellchecking +" autocmd FileType markdown setlocal spell spelllang=de " not working yet + + " colorscheme toggle dark/light: function! s:SwitchColorscheme() if g:colors_name == 'darcula'