Skip to content

Instantly share code, notes, and snippets.

@thinkallabout
Created October 23, 2017 23:05
Show Gist options
  • Save thinkallabout/c4148e024769b96cd9370da5536d3a13 to your computer and use it in GitHub Desktop.
Save thinkallabout/c4148e024769b96cd9370da5536d3a13 to your computer and use it in GitHub Desktop.
vimrc
set nocompatible
filetype plugin on
syntax on
set tabstop=4
set shiftwidth=4
set expandtab
call pathogen#infect()
autocmd BufWritePost *.wiki silent :VimwikiAll2HTML
let g:vimwiki_list = [{
\ 'path': '$HOME/.vimwiki',
\ 'template_path': '$HOME/.vimwiki/templates',
\ 'template_default': 'default',
\ 'template_ext': '.html'}]
augroup autoindent
au!
autocmd BufWritePre * :normal migg=G`i
augroup End
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment