Use $HOME instead of ~/ in paths
Apparently, the latter doesn't work on all platforms. Ref #565
This commit is contained in:
parent
675ff23ed1
commit
bddd644fbb
@ -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 = []
|
||||
|
Loading…
Reference in New Issue
Block a user