Use $HOME instead of ~/ in paths

Apparently, the latter doesn't work on all platforms.
Ref #565
This commit is contained in:
EinfachToll 2018-11-07 22:02:30 +01:00
parent 675ff23ed1
commit bddd644fbb

View File

@ -198,12 +198,12 @@ function! s:populate_wikilocal_options()
\ 'list_margin': -1, \ 'list_margin': -1,
\ 'maxhi': 0, \ 'maxhi': 0,
\ 'nested_syntaxes': {}, \ 'nested_syntaxes': {},
\ 'path': '~/vimwiki/', \ 'path': $HOME . '/vimwiki/',
\ 'path_html': '', \ 'path_html': '',
\ 'syntax': 'default', \ 'syntax': 'default',
\ 'template_default': 'default', \ 'template_default': 'default',
\ 'template_ext': '.tpl', \ 'template_ext': '.tpl',
\ 'template_path': '~/vimwiki/templates/', \ 'template_path': $HOME . '/vimwiki/templates/',
\ } \ }
let g:vimwiki_wikilocal_vars = [] let g:vimwiki_wikilocal_vars = []