Move to data folder and need absolute path here (#1069)

Vimwiki is not config but it's data so ".local/share/nvim" is
    more proper location for it.

    Here relative path was given so it tries to create new vimwiki
    folder when launched from other than home dir or changing current
    dir using `:cd <path>` inside vim when launching vimwiki.
This commit is contained in:
Arjun Karangiya 2022-01-29 20:21:52 +05:30 committed by GitHub
parent 786cee9303
commit c28d25c152
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -97,7 +97,7 @@ set noshowcmd
" Ensure files are read as what I want:
let g:vimwiki_ext2syntax = {'.Rmd': 'markdown', '.rmd': 'markdown','.md': 'markdown', '.markdown': 'markdown', '.mdown': 'markdown'}
map <leader>v :VimwikiIndex<CR>
let g:vimwiki_list = [{'path': '.config/nvim/vimwiki', 'syntax': 'markdown', 'ext': '.md'}]
let g:vimwiki_list = [{'path': '~/.local/share/nvim/vimwiki', 'syntax': 'markdown', 'ext': '.md'}]
autocmd BufRead,BufNewFile /tmp/calcurse*,~/.calcurse/notes/* set filetype=markdown
autocmd BufRead,BufNewFile *.ms,*.me,*.mom,*.man set filetype=groff
autocmd BufRead,BufNewFile *.tex set filetype=tex