LukeSmithxyz / voidrice

My dotfiles (deployed by LARBS)
GNU General Public License v3.0
4.26k stars 1.22k forks source link

Super N #1408

Closed blurpm closed 3 months ago

blurpm commented 3 months ago

When press super+n it open vimwiki.md Is there anyway to change the location of it? I want to put it into my syncthing folder. Tried softlink but couldnt manage to do it unfortunately. So if I can simply change the folder location ill be set.

Thank you

ArgusGuardian commented 3 months ago

You can specify the path of you want from the nvim config. go to .config/nvim/init.vim

Then modify the path in the following line: let g:vimwiki_list = [{'path': '~/.local/share/nvim/vimwiki', 'syntax': 'markdown', 'ext': '.md'}]

you can find additional settings in the vimwiki repo

blurpm commented 3 months ago

Thank you!