From 6163103b829f4753773f68d502662ec4fa5f7ecd Mon Sep 17 00:00:00 2001 From: Michiel Scholten Date: Wed, 8 Jan 2020 09:36:11 +0100 Subject: [PATCH 1/3] It's 2020! --- bin/worknotes | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/worknotes b/bin/worknotes index 3b4800d..14c58a2 100755 --- a/bin/worknotes +++ b/bin/worknotes @@ -2,4 +2,4 @@ cd ~/mydocs/work/divault git pull #vim -c ":vsp planning_2015.todo" notes_2015.md notes_2014.md -vim -c "set nofoldenable" planning_2019.todo notes.md +vim -c "set nofoldenable" planning_2020.todo notes.md From 7d238fa7475ed4aa39216dda90c7efe26092f80e Mon Sep 17 00:00:00 2001 From: Michiel Scholten Date: Wed, 8 Jan 2020 22:06:57 +0100 Subject: [PATCH 2/3] Markdown preview plugin, using https://github.com/MichaelMure/mdr --- .vimrc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.vimrc b/.vimrc index a735444..466794e 100644 --- a/.vimrc +++ b/.vimrc @@ -397,6 +397,9 @@ Plug 'godlygeek/tabular' Plug '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'] +" Preview markdown files with :PreviewMarkdown - needs mdr from +" https://github.com/MichaelMure/mdr +Plug 'skanehira/preview-markdown.vim' " The NERD Commenter: A plugin that allows for easy commenting of code for From 4f4b0c4461e07552c57758c823278af05d468a87 Mon Sep 17 00:00:00 2001 From: Michiel Scholten Date: Thu, 9 Jan 2020 11:49:43 +0100 Subject: [PATCH 3/3] Markdown preview opens vertical split by default now --- .vimrc | 1 + 1 file changed, 1 insertion(+) diff --git a/.vimrc b/.vimrc index 466794e..1df4829 100644 --- a/.vimrc +++ b/.vimrc @@ -400,6 +400,7 @@ let g:vim_markdown_fenced_languages = ['c++=cpp', 'viml=vim', 'bash=sh', 'ini=do " Preview markdown files with :PreviewMarkdown - needs mdr from " https://github.com/MichaelMure/mdr Plug 'skanehira/preview-markdown.vim' +let g:preview_markdown_vertical = 1 " The NERD Commenter: A plugin that allows for easy commenting of code for