diff options
author | Cody Hiar <codyfh@gmail.com> | 2016-12-18 10:27:42 -0700 |
---|---|---|
committer | Cody Hiar <codyfh@gmail.com> | 2016-12-18 10:28:11 -0700 |
commit | a99a7d937e07a6c23d895db3d052291d646f7687 (patch) | |
tree | a411c845bb0becfd19fd49a85fc105cccc995f47 | |
parent | f9d96328476c35300b18ebe6cd38424acc8ea41b (diff) |
Adding the vim wiki stuff.
-rw-r--r-- | vimrc | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -12,12 +12,13 @@ Plug 'jistr/vim-nerdtree-tabs' Plug 'tpope/vim-fugitive' Plug 'terryma/vim-multiple-cursors' Plug 'scrooloose/syntastic' -Plug 'joonty/vdebug' +Plug 'thornycrackers/vdebug' Plug 'ctrlpvim/ctrlp.vim' Plug 'tpope/vim-surround' Plug 'tmhedberg/matchit' Plug 'plasticboy/vim-markdown' Plug 'thornycrackers/vim-options' " Vim options +Plug 'vimwiki/vimwiki' " Add plugins to &runtimepath call plug#end() @@ -31,3 +32,4 @@ call plug#end() set lazyredraw "Stops flashing from command above and helps save on processing set backupdir^=~/.vim/vim-files/backups/ set directory=~/.vim/vim-files/swaps/ +let g:vimwiki_list = [{'path': '~/Notes/wiki', 'path_html': '~/Notes/wiki_html/', 'ext': '.markdown'}] |