vimwiki
vimwiki copied to clipboard
Personal Wiki for Vim
- [X] Include the VimWiki settings from your `.vimrc` ```viml " min.vim filetype indent plugin on syntax on call plug#begin('~/.local/share/nvim/plugged') Plug 'https://github.com/vimwiki/vimwiki', { 'branch': 'dev' } let g:vimwiki_list = [{'path':...
Prior to submitting a new issue make sure to complete these steps: - [X] Include the VimWiki settings from your `.vimrc` > let g:vimwiki_folding = 'list' > let g:vimwiki_list =...
My ```init.vim```, with markdown syntax ``` let g:vimwiki_list = [{'path': '~/Documents/wiki/', 'syntax':'markdown', 'ext':'.md'}] let g:vimwiki_global_ext = 0 autocmd VimEnter * VimwikiIndex ``` I want to run Vimwiki at startup. After...
Prior to submitting a new issue make sure to complete these steps: - [ ] Include the VimWiki settings from your `.vimrc` First part for vimwiki settings declarations: ``` let...
Prior to submitting a new issue make sure to complete these steps: - [x] Checkout the `dev` branch and confirm the issue is present there as well. The `dev` branch...
I am using `vim 8.2` with this vimwiki config in my `.vimrc` ``` let g:vimwiki_list = [{'path': '$HOME/vimwiki/', \ 'syntax': 'markdown', 'ext': '.md', \ 'auto_diary_index': 1, 'auto_generate_links': 1, \ }]...
Hi, I am trying to set up VimWiki in harmony with Goyo. I'm toggling Goyo with a leader key mapping. The problem is (I think) that Goyo reloads the colorscheme...
the file type is vimwiki.markdown, but when I trigger VimwikiFollowLink command, vimwiki still creates mediawiki style link the syntax and ext configs are below, the wiki path part loaded correctly...
Was trying to see if there had been any feature request regarding evaluating/executing the code within a preformatted block. This is another one of those handy features for org mode...
- [x] Include the VimWiki settings from your `.vimrc` neovim: vimwiki.lua ~~~ return { -- Configuration for vimwiki plugin { "vimwiki/vimwiki", -- defaults to the latest commit on the dev...