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
1 changed files with 2 additions and 2 deletions

View File

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