summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--vimrc2
1 files changed, 1 insertions, 1 deletions
diff --git a/vimrc b/vimrc
index 6ef1066..8c43bb1 100644
--- a/vimrc
+++ b/vimrc
@@ -103,7 +103,7 @@ let g:vimwiki_list = [{'path': '~/vimwiki/', 'syntax': 'markdown', 'ext': '.md'}
103" Git push quietly whenever leaving vim with VimWiki files 103" Git push quietly whenever leaving vim with VimWiki files
104augroup vimwikiPush 104augroup vimwikiPush
105 autocmd! 105 autocmd!
106 autocmd VimLeave ~/vimwiki/* :!(~/vimwiki/scripts/upload.sh > /dev/null 2>&1 &) 106 autocmd VimLeave ~/vimwiki/* :!(cd ~/vimwiki && git add * && git commit -am update && git push origin > /dev/null 2>&1 &)
107augroup END 107augroup END
108 108
109" Configuration fro vim-instant-markdown 109" Configuration fro vim-instant-markdown