let wiki_1 = {} let wiki_1.syntax = 'markdown' let wiki_1.ext = '.md' let g:vimwiki_list = [{'path': '~/wiki/', \ 'syntax': 'markdown', 'ext': '.md'}] " TAB in general mode will move to text buffer nnoremap :bnext " SHIFT-TAB will go back nnoremap :bprevious "let g:vimwiki_list = [{'path': '~/wiki/', 'index': 'main'}] "Key bindings "Normal mode: "ww -- Open default wiki index file. "wt -- Open default wiki index file in a new tab. "ws -- Select and open wiki index file. "wd -- Delete wiki file you are in. "wr -- Rename wiki file you are in. " -- Follow/Create wiki link " -- Split and follow/create wiki link " -- Vertical split and follow/create wiki link " -- Go back to parent(previous) wiki link " -- Find next wiki link " -- Find previous wiki link "For more keys, see :h vimwiki-mappings "Commands ":Vimwiki2HTML -- Convert current wiki link to HTML ":VimwikiAll2HTML -- Convert all your wiki links to HTML ":help vimwiki-commands -- list all commands ":help vimwiki -- General vimwiki help docs