Last active
March 22, 2017 15:13
-
-
Save eli-oat/6e2f8c5d5b30e2e58f1b1fed98e58b1b to your computer and use it in GitHub Desktop.
Make mvim feel more like ia writer
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
" make mvim feel like ia writer | |
" touch .vim/writer.vim | |
" then call when editing markdown :source ~/.vim/writer.vim | |
set background=light | |
set nonu | |
set laststatus=0 | |
colorscheme default | |
hi FoldColumn guibg=white | |
set foldcolumn=12 | |
set linespace=8 | |
set guifont=Source\ Code\ Pro\ Light:h16 | |
hi Normal guibg=gray95 | |
hi NonText guifg=gray95 | |
hi FoldColumn guibg=gray95 | |
hi CursorLine guibg=gray90 | |
hi Title gui=bold guifg=gray25 | |
hi MarkdownHeadingDelimiter gui=bold guifg=gray25 | |
hi htmlSpecialChar guifg=black | |
hi markdownBold gui=bold guifg=gray25 | |
hi markdownItalic guifg=gray25 gui=underline | |
hi markdownUrl guifg=#2fb3a6 | |
hi markdownAutomaticLink guifg=#2fb3a6 | |
hi markdownLinkText guifg=#317849 | |
hi markdownUrlTitle guifg=#317849 | |
hi markdownBlockquote guifg=#317849 gui=bold | |
hi markdownId guifg=#2fb3a6 | |
hi markdownIdDeclaration guifg=#317849 gui=bold | |
hi markdownListMarker guifg=#317849 | |
highlight Cursor guibg=#15abdd |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment