Last active
August 29, 2015 14:13
-
-
Save itsthatguy/318a3c9e695695e2a290 to your computer and use it in GitHub Desktop.
Use http://marked2app.com/ or your favorite markdown previewer
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
" Use :MarkedOpen to launch Marked | |
" Requires: Use http://marked2app.com/ | |
Bundle 'itspriddle/vim-marked' | |
" Syntax highlighting on .md files | |
Bundle 'tpope/vim-markdown' | |
" Used to autosave markdown files | |
Bundle 'vim-scripts/vim-auto-save' | |
" Disable auto_save by default, then enable it for markdown | |
let g:auto_save = 0 | |
autocmd FileType markdown let g:auto_save = 1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment