Install vimwiki
This commit is contained in:
parent
a1abe07a12
commit
71b3111862
2 changed files with 8 additions and 0 deletions
6
init.vim
6
init.vim
|
@ -116,4 +116,10 @@ noremap <C-Down> :call AdjustFontSize(-1)<CR>
|
||||||
inoremap <C-Up> <Esc>:call AdjustFontSize(1)<CR>a
|
inoremap <C-Up> <Esc>:call AdjustFontSize(1)<CR>a
|
||||||
inoremap <C-Down> <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'
|
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'
|
||||||
|
|
2
plug.vim
2
plug.vim
|
@ -52,6 +52,8 @@ Plug 'ncm2/ncm2'
|
||||||
Plug 'xarthurx/taskwarrior.vim'
|
Plug 'xarthurx/taskwarrior.vim'
|
||||||
" support for lsp in gnvim
|
" support for lsp in gnvim
|
||||||
Plug 'vhakulinen/gnvim-lsp'
|
Plug 'vhakulinen/gnvim-lsp'
|
||||||
|
" Wiki support
|
||||||
|
Plug 'vimwiki/vimwiki'
|
||||||
|
|
||||||
" All of your Plugins must be added before the following line
|
" All of your Plugins must be added before the following line
|
||||||
call plug#end() " required
|
call plug#end() " required
|
||||||
|
|
Loading…
Reference in a new issue