mirror of
https://github.com/nmasur/dotfiles
synced 2024-11-10 05:12:56 +00:00
21 lines
533 B
VimL
21 lines
533 B
VimL
" VimWiki
|
|
"--------
|
|
|
|
let g:vimwiki_list = [
|
|
\ {
|
|
\ 'path': $NOTES_PATH,
|
|
\ 'syntax': 'markdown',
|
|
\ 'index': 'home',
|
|
\ 'ext': '.md'
|
|
\ }
|
|
\ ]
|
|
let g:vimwiki_key_mappings =
|
|
\ {
|
|
\ 'all_maps': 1,
|
|
\ 'mouse': 1,
|
|
\ }
|
|
let g:vimwiki_auto_chdir = 1 " Set local dir to Wiki when open
|
|
let g:vimwiki_create_link = 0 " Don't automatically create new links
|
|
let g:vimwiki_listsyms = ' x' " Set checkbox symbol progression
|
|
let g:vimwiki_table_mappings = 0 " VimWiki table keybinds interfere with tab completion
|