Install vimwiki

This commit is contained in:
Thomas Gideon 2020-01-28 17:36:10 -05:00
parent a1abe07a12
commit 71b3111862
2 changed files with 8 additions and 0 deletions

View file

@ -116,4 +116,10 @@ noremap <C-Down> :call AdjustFontSize(-1)<CR>
inoremap <C-Up> <Esc>:call AdjustFontSize(1)<CR>a
inoremap <C-Down> <Esc>:call AdjustFontSize(-1)<CR>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'

View file

@ -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