-
-
Notifications
You must be signed in to change notification settings - Fork 251
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #186 from instant-markdown/minimal-vimrc
Minimal vimrc for issues
- Loading branch information
Showing
5 changed files
with
72 additions
and
26 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
# Authors | ||
|
||
- Suan-Aik Yeo (creator) | ||
- Ashwin Vishnu (maintainer) | ||
|
||
# Thanks | ||
|
||
To all contributors: | ||
|
||
- Bryan Richter | ||
- Andy Russell | ||
- Anthony Panozzo | ||
- Dominick Pham | ||
- Fabio Pelosin | ||
- Ingo Karkat | ||
- James Hogan | ||
- Johann Philipp Strathausen | ||
- MortalHappiness | ||
- Phan Hai Phong | ||
- QMonkey | ||
- Ricardo Santos | ||
- Rob Wu | ||
- Sebastian Kosch | ||
- Terry Ma | ||
- xieshiyao |
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
set nocompatible | ||
filetype off | ||
|
||
call plug#begin('~/.vim/plugged') | ||
Plug 'junegunn/vim-plug' | ||
Plug 'instant-markdown/vim-instant-markdown', {'for': ['markdown', 'markdown.pandoc']} | ||
call plug#end() | ||
|
||
filetype plugin indent on | ||
syntax enable | ||
set nomore | ||
set noswapfile | ||
set viminfo= | ||
|
||
let g:instant_markdown_logfile = '/tmp/instant_markdown.log' | ||
"Uncomment to override defaults: | ||
"let g:instant_markdown_slow = 1 | ||
"let g:instant_markdown_autostart = 0 | ||
"let g:instant_markdown_open_to_the_world = 1 | ||
"let g:instant_markdown_allow_unsafe_content = 1 | ||
"let g:instant_markdown_allow_external_content = 0 | ||
"let g:instant_markdown_mathjax = 1 | ||
"let g:instant_markdown_autoscroll = 0 | ||
"let g:instant_markdown_port = 8888 | ||
"let g:instant_markdown_python = 1 |
This file contains 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