Created
January 22, 2018 13:48
-
-
Save adnils/0c103de521095ef77f9083446d13b5ba to your computer and use it in GitHub Desktop.
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
" paper.vim - Vim color scheme for 16-color terminals | |
" -------------------------------------------------------------- | |
" Author: Adrian Nilsson | |
" Version: 0.0.1 | |
" -------------------------------------------------------------- | |
set background=light | |
hi! clear | |
if exists("syntax_on") | |
syntax reset | |
endif | |
let colors_name="paper" | |
hi Normal ctermfg=0 | |
hi Number ctermfg=0 | |
hi Boolean ctermfg=0 | |
hi Constant ctermfg=0 | |
hi Keyword ctermfg=0 | |
hi Function ctermfg=0 cterm=bold | |
hi Identifier ctermfg=0 | |
hi Statement ctermfg=0 cterm=bold | |
hi String ctermfg=102 | |
hi Special ctermfg=0 | |
hi Comment ctermfg=145 cterm=italic | |
hi Underlined ctermfg=4 cterm=underline | |
hi Type ctermfg=0 cterm=italic |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment