Created
November 6, 2012 08:29
-
-
Save proxypoke/4023450 to your computer and use it in GitHub Desktop.
a vim colorscheme
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
" Name: KOS-MOS vim colorscheme | |
" Author: slowpoke <mail at slowpoke dot io> | |
" License: WTFPLv2 | |
" Version: 0.1 (Work in Progress) | |
" About: A colorscheme inspired by and in dedication to the lovely female | |
" android from the Xenosaga series. | |
" some boilerplate | |
set background=dark | |
highlight clear | |
if exists("syntax_on") | |
syntax reset | |
endif | |
let g:colors_name = "kosmos" | |
" Text | |
hi Normal ctermfg=Blue | |
hi Identifier ctermfg=Darkblue | |
hi Statement ctermfg=Darkblue | |
hi Comment ctermfg=Cyan | |
hi Type ctermfg=White | |
hi Constant ctermfg=Yellow | |
hi Number ctermfg=Red | |
hi PreProc ctermfg=190 | |
" Highlights | |
hi Visual cterm=reverse | |
" Interface | |
hi LineNr ctermfg=Lightblue | |
hi CursorLineNr ctermfg=Red | |
hi Colorcolumn ctermbg=Yellow | |
" Folding | |
hi Folded cterm=bold,underline ctermfg=Red ctermbg=None |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment