diff --git a/init.vim b/init.vim index 363ed8d..fbf1a97 100644 --- a/init.vim +++ b/init.vim @@ -116,4 +116,10 @@ noremap :call AdjustFontSize(-1) inoremap :call AdjustFontSize(1)a inoremap :call AdjustFontSize(-1)a +" widen the default display of the taskwarrior plugin to make the description +" wrap less let g:task_rc_override = 'rc.defaultwidth=120' + +" override the default location of vimwiki and change to markdown +let g:vimwiki_list = [{'path': '~/Documents/Wiki/', 'syntax': 'markdown', 'ext': '.md'}] +let g:vimwiki_dir_link = 'index' diff --git a/plug.vim b/plug.vim index 1655299..67799ba 100644 --- a/plug.vim +++ b/plug.vim @@ -52,6 +52,8 @@ Plug 'ncm2/ncm2' Plug 'xarthurx/taskwarrior.vim' " support for lsp in gnvim Plug 'vhakulinen/gnvim-lsp' +" Wiki support +Plug 'vimwiki/vimwiki' " All of your Plugins must be added before the following line call plug#end() " required