This repository was archived by the owner on May 19, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2.9k
/
Copy pathseoul.vim
63 lines (49 loc) · 2.09 KB
/
seoul.vim
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
" Vim color scheme
"
" Name: seoul.vim
" Maintainer: Eivind Uggedal <[email protected]> [http://redflavor.com]
" Last Change: 2008-04-16
" Version: 1.1
"
" A 88 color vim scheme intended for rxvt-unicode terminals. Will also work
" under xterm's 256 color mode. It uses special higlight groups for Ruby,
" but should function with other syntaxes as well. The name is inspired from
" the '88 summer olympics in Seoul, South Korea. The scheme is somewhat
" inspired by Justin Palmer's Vibrant Ink. The latest version should be
" available at: http://redflavor.com/seoul.vim
set background=dark
hi clear
if exists("syntax_on")
syntax reset
endif
let colors_name = "seoul"
if has("gui_running") || &t_Co == 88 || &t_Co == 256
set t_Co=88
hi Normal ctermfg=15 ctermbg=0
hi Cursor ctermfg=0 ctermbg=11
hi CursorLine ctermfg=15 ctermbg=80 cterm=NONE
hi Keyword ctermfg=68
hi Define ctermfg=68 "module,class,def,end
hi Statement ctermfg=68 "begin,do-end,if,private
hi Include ctermfg=68 "include
hi Constant ctermfg=15 "self,1,true
hi Identifier ctermfg=27 "@@var,@var,|var|
hi Type ctermfg=76 "Mod::Deffed, Classdeffed
hi Function ctermfg=76 "methoddeffed
hi String ctermfg=28 ctermbg=0
hi Special ctermfg=28 ctermbg=0
hi Comment ctermfg=84
hi PreProc ctermfg=15 "#!/bin/sh
hi rubyStringDelimiter ctermfg=27
hi rubySymbol ctermfg=27
hi rubyInterpolation ctermfg=78
hi rubyConstant ctermfg=51 "SomeClass,SomeModule
hi rubyPseudoVariable ctermfg=27 "self,true
hi Search ctermfg=0 ctermbg=72
hi IncSearch ctermfg=0 ctermbg=72
hi TabLine ctermfg=15 ctermbg=0
hi TabLineFill ctermfg=15 ctermbg=0 cterm=underline
hi TabLineSel ctermfg=0 ctermbg=86
hi Error ctermfg=7 ctermbg=1
hi ErrorMsg ctermfg=7 ctermbg=1
endif