Created
October 23, 2017 23:05
-
-
Save thinkallabout/c4148e024769b96cd9370da5536d3a13 to your computer and use it in GitHub Desktop.
vimrc
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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