Added vimwiki plugin

This commit is contained in:
Russell Riker 2020-09-13 11:40:23 -04:00
parent 923a678b18
commit 7245cdd3d5
1 changed files with 3 additions and 0 deletions

View File

@ -18,6 +18,8 @@ autocmd FileType tex,latex,markdown setlocal spell spelllang=en_us
" copy to the system clipboard
set clipboard+=unnamedplus
let g:vimwiki_list = [{'path': '~/vimwiki/',
\ 'syntax': 'markdown', 'ext': '.md'}]
" ***********************************************************
" ********************* install pluggins ********************
" ***********************************************************
@ -37,6 +39,7 @@ call plug#begin('~/.vim/plugged')
Plug 'junegunn/fzf', { 'do': { -> fzf#install() } } " fuzzy finder
Plug 'junegunn/fzf.vim' " fuzzy finder
Plug 'airblade/vim-rooter'
Plug 'vimwiki/vimwiki'
call plug#end()