@ -18,6 +18,7 @@ Plug 'vimwiki/vimwiki'
|
||||
Plug 'nmante/vim-latex-live-preview'
|
||||
Plug 'lervag/vimtex'
|
||||
Plug 'junegunn/goyo.vim'
|
||||
Plug 'jceb/vim-orgmode'
|
||||
Plug 'prettier/vim-prettier', { 'do': 'npm install --force' }
|
||||
Plug 'iamcco/markdown-preview.nvim', { 'do': 'npm install --force' }
|
||||
" Problem with vim-prettier
|
||||
@ -27,10 +28,13 @@ Plug 'iamcco/markdown-preview.nvim', { 'do': 'npm install --force' }
|
||||
call plug#end()
|
||||
|
||||
" Vim wiki
|
||||
"let g:vimwiki_list = [{'path': '~/git/notes', 'syntax': 'markdown', 'ext': '.md'}]
|
||||
let vimwiki_path=$HOME.'/git/notes/'
|
||||
let vimwiki_html_path=$HOME.'/vimwiki_html/'
|
||||
let g:vimwiki_list = [{'path_html':vimwiki_html_path, 'syntax':'markdown', 'ext':'.md', 'custom_wiki2html':$HOME.'/.vim/plugged/vimwiki/autoload/vimwiki/customwiki2html.sh'}]
|
||||
let wiki = {}
|
||||
let wiki.path = '~/git/notes/'
|
||||
let wiki.path_html = '~/vimwiki_html/'
|
||||
let wiki.syntax = 'default'
|
||||
let wiki.ext = '.wiki'
|
||||
let g:vimwiki_list = [wiki]
|
||||
let g:vimwiki_table_mappings = 0
|
||||
|
||||
" Status-line
|
||||
set statusline=
|
||||
|
Reference in New Issue
Block a user