set nocompatible
syntax on
filetype plugin on
Strange, but all my favourite plugins, including vimwiki+Calendar, run fine on VIM Touch (well, maybe with a few unimportant minor issues).
Check if these options are set in .vimrc:
set nocompatible
syntax on
filetype plugin onWithout latter hyperlinking won't work.
Except for location of the files, my vimwiki configuration is identical to the one I have for macvim on my laptop.
Any help greatly appreciated.
Thanks,
Eric
I can now get the index page and the diary page to open, but hyperlinking and folding on headers is not working.
" ---------------------------------------------- VIMWIKI"restrict vimwiki operation to only those paths listed in g:vimwiki_list.
let g:vimwiki_global_ext = 0
"set vimwiki syntax to markdownlet g:vimwiki_list = [{'path': '/storage/emulated/0/vimwiki/', 'syntax': 'markdown'}]"add wiki as an extent recognized as a markdown fileautocmd BufRead,BufNewFile *.wiki :set ft=markdown"enable vimwiki foldinglet g:vimwiki_folding=1"convert vimwiki headers to markdown headers" symmetric: '== title ==' --> asymmetric '## title' for any level of headernnoremap <Leader>be :%s@^\(\s*\)\(=\+\)\s\+\(.*\)\s\+\2\%(\s*\)$@\=submatch(1).\ substitute(submatch(2),'=','#','g').' '.submatch(3)@gc<CR>