dotman 0.0.3.3 → 0.0.3.4

Sign up to get free protection for your applications and to get access to all the features.
Files changed (44) hide show
  1. checksums.yaml +4 -4
  2. data/.travis.yml +7 -0
  3. data/README.md +6 -3
  4. data/bin/dot +4 -9
  5. data/lib/dotman.rb +2 -0
  6. data/lib/dotman/collect.rb +2 -2
  7. data/lib/dotman/dotfile_collection.rb +10 -4
  8. data/lib/dotman/git.rb +1 -1
  9. data/lib/dotman/notification.rb +35 -0
  10. data/lib/dotman/version.rb +1 -1
  11. data/spec/dotman/collect_spec.rb +8 -3
  12. data/spec/integration/dotfile_collection_integration_spec.rb +29 -1
  13. data/spec/integration/user_integration_spec.rb +1 -1
  14. data/spec/spec_helper.rb +23 -2
  15. metadata +4 -60
  16. data/spec/data/Timbinous_dotfiles/.bashrc +0 -121
  17. data/spec/data/Timbinous_dotfiles/.gitignore +0 -5
  18. data/spec/data/Timbinous_dotfiles/.tmux.conf +0 -15
  19. data/spec/data/Timbinous_dotfiles/.vim/autoload/pathogen.vim +0 -245
  20. data/spec/data/Timbinous_dotfiles/.vim/bundle/.gitkeep +0 -0
  21. data/spec/data/Timbinous_dotfiles/.vim/colors/Black.vim +0 -16
  22. data/spec/data/Timbinous_dotfiles/.vim/colors/Dark.vim +0 -63
  23. data/spec/data/Timbinous_dotfiles/.vim/colors/autumnleaf.vim +0 -154
  24. data/spec/data/Timbinous_dotfiles/.vim/colors/c.vim +0 -32
  25. data/spec/data/Timbinous_dotfiles/.vim/colors/darkzen.vim +0 -25
  26. data/spec/data/Timbinous_dotfiles/.vim/colors/grb.vim +0 -13
  27. data/spec/data/Timbinous_dotfiles/.vim/colors/grb.vim~ +0 -13
  28. data/spec/data/Timbinous_dotfiles/.vim/colors/grb2.vim +0 -59
  29. data/spec/data/Timbinous_dotfiles/.vim/colors/grb256.vim +0 -32
  30. data/spec/data/Timbinous_dotfiles/.vim/colors/grb3.vim +0 -23
  31. data/spec/data/Timbinous_dotfiles/.vim/colors/grb4.vim +0 -17
  32. data/spec/data/Timbinous_dotfiles/.vim/colors/grblight.vim +0 -15
  33. data/spec/data/Timbinous_dotfiles/.vim/colors/grblight.vim~ +0 -14
  34. data/spec/data/Timbinous_dotfiles/.vim/colors/ir_black.vim +0 -212
  35. data/spec/data/Timbinous_dotfiles/.vim/colors/moria.vim +0 -227
  36. data/spec/data/Timbinous_dotfiles/.vim/colors/pyte.vim +0 -92
  37. data/spec/data/Timbinous_dotfiles/.vim/colors/redstring.vim +0 -26
  38. data/spec/data/Timbinous_dotfiles/.vim/colors/xterm16.vim +0 -811
  39. data/spec/data/Timbinous_dotfiles/.vim/spell/en.utf-8.add +0 -5
  40. data/spec/data/Timbinous_dotfiles/.vim/spell/en.utf-8.add.spl +0 -0
  41. data/spec/data/Timbinous_dotfiles/.vimrc +0 -70
  42. data/spec/data/Timbinous_dotfiles/.zshrc +0 -62
  43. data/spec/data/Timbinous_dotfiles/symlinkify +0 -58
  44. data/spec/data/Timbinous_dotfiles/tim.zsh-theme +0 -29
@@ -1,32 +0,0 @@
1
- " Vim Syntax Highlighting File
2
- "
3
- " Language: C
4
- "
5
- " Extra: This is to copy the vi clone elvis on its
6
- " syntax highlighting.
7
- "
8
- " Maintainer: Dean Jones<dean@cleancode.org>
9
- "
10
- " Comment: This works well with the default c.vim
11
- " that comes with vim6.x. It basically
12
- " overrides the very bright colors it uses
13
- " and uses simple white for highlighting
14
- " key words and types in the C language.
15
- " If you're using Eterm, uncomment the
16
- " Normal line specified below.
17
-
18
- hi clear
19
-
20
- " Eterm users, uncomment the line below
21
- " hi Normal ctermfg=grey
22
-
23
- hi PreProc ctermfg=white
24
- hi Type ctermfg=white
25
- hi Statement ctermfg=white
26
- hi Comment ctermfg=grey
27
- hi Constant cterm=NONE ctermfg=NONE
28
- hi Number cterm=NONE ctermfg=NONE
29
- hi String cterm=NONE ctermfg=NONE
30
- hi Special cterm=NONE ctermfg=NONE
31
-
32
- " EOF for Dean's Elvis like highlighting
@@ -1,25 +0,0 @@
1
- " Vim color file
2
- " Maintainer: Ruda Moura <ruda.moura@gmail.com>
3
- " Last Change: $Date: 2005/11/12 15:40:06 $
4
-
5
- set background=dark
6
- highlight clear
7
- if exists("syntax on")
8
- syntax reset
9
- endif
10
-
11
- let g:colors_name = "darkzen"
12
-
13
- highlight Normal term=none ctermfg=gray cterm=none guifg=gray gui=none guibg=black
14
- highlight Comment term=none ctermfg=cyan cterm=none guifg=cyan gui=none
15
- highlight Constant term=none ctermfg=red cterm=none guifg=red gui=none
16
- highlight Special term=none ctermfg=red cterm=bold guifg=red gui=bold
17
- highlight Identifier term=none ctermfg=gray cterm=none guifg=gray gui=none
18
- highlight Statement term=bold ctermfg=gray cterm=bold guifg=gray gui=bold
19
- highlight Operator term=bold ctermfg=gray cterm=bold guifg=gray gui=bold
20
- highlight PreProc term=bold ctermfg=lightgreen cterm=none guifg=green gui=none
21
- highlight Type term=bold ctermfg=magenta cterm=none guifg=magenta gui=none
22
- highlight String term=none ctermfg=red cterm=none guifg=red gui=none
23
- highlight Number term=none ctermfg=red cterm=none guifg=red gui=none
24
-
25
- " vim:ts=2:sw=2:et
@@ -1,13 +0,0 @@
1
- " Based on
2
- runtime colors/Default.vim
3
-
4
- hi clear
5
- set background=dark
6
-
7
- syntax reset
8
-
9
- let g:colors_name = "grb"
10
-
11
- " hi Statement ctermfg=yellow
12
- hi Comment ctermfg=darkyellow
13
-
@@ -1,13 +0,0 @@
1
- " Based on
2
- runtime colors/Default.vim
3
-
4
- hi clear
5
- set background=dark
6
-
7
- syntax reset
8
-
9
- let g:colors_name = "grb"
10
-
11
- " hi Statement ctermfg=yellow
12
- hi Comment ctermfg=darkyellow
13
-
@@ -1,59 +0,0 @@
1
- "%% SiSU Vim color file
2
- " Slate Maintainer: Ralph Amissah <ralph@amissah.com>
3
- " (originally looked at desert Hans Fugal <hans@fugal.net> http://hans.fugal.net/vim/colors/desert.vim (2003/05/06)
4
- "
5
- " MODIFIED BY GRB
6
- "
7
- :set background=dark
8
- :highlight clear
9
- if version > 580
10
- hi clear
11
- if exists("syntax_on")
12
- syntax reset
13
- endif
14
- endif
15
- let colors_name = "slate"
16
- :hi Normal guifg=White guibg=grey15
17
- :hi Cursor guibg=khaki guifg=slategrey
18
- :hi VertSplit guibg=#c2bfa5 guifg=grey40 gui=none cterm=reverse
19
- :hi Folded guibg=black guifg=grey40 ctermfg=grey ctermbg=darkgrey
20
- :hi FoldColumn guibg=black guifg=grey20 ctermfg=4 ctermbg=7
21
- :hi IncSearch guifg=green guibg=black cterm=none ctermfg=yellow ctermbg=green
22
- :hi ModeMsg guifg=goldenrod cterm=none ctermfg=brown
23
- :hi MoreMsg guifg=SeaGreen ctermfg=darkgreen
24
- :hi NonText guifg=RoyalBlue guibg=grey15 cterm=bold ctermfg=blue
25
- :hi Question guifg=springgreen ctermfg=green
26
- :hi Search guibg=peru guifg=wheat cterm=none ctermfg=grey ctermbg=blue
27
- :hi SpecialKey guifg=yellowgreen ctermfg=darkgreen
28
- :hi StatusLine guibg=#c2bfa5 guifg=black gui=none cterm=bold,reverse
29
- :hi StatusLineNC guibg=#c2bfa5 guifg=grey40 gui=none cterm=reverse
30
- :hi Title guifg=gold gui=bold cterm=bold ctermfg=yellow
31
- :hi Statement guifg=CornflowerBlue ctermfg=lightblue
32
- :hi Visual gui=none guifg=khaki guibg=olivedrab cterm=reverse
33
- :hi WarningMsg guifg=salmon ctermfg=1
34
- :hi String guifg=SkyBlue ctermfg=darkcyan
35
- :hi Comment ctermfg=darkgray guifg=grey40
36
- :hi Constant guifg=#ffa0a0 ctermfg=brown
37
- :hi Special guifg=darkkhaki ctermfg=brown
38
- :hi Identifier guifg=salmon ctermfg=red
39
- :hi Include guifg=red ctermfg=red
40
- :hi PreProc guifg=red guibg=white ctermfg=red
41
- :hi Operator guifg=Red ctermfg=Red
42
- :hi Define guifg=gold gui=bold ctermfg=yellow
43
- :hi Type guifg=CornflowerBlue ctermfg=2
44
- :hi Function guifg=navajowhite ctermfg=brown
45
- :hi Structure guifg=green ctermfg=green
46
- :hi LineNr guifg=grey50 ctermfg=3
47
- :hi Ignore guifg=grey40 cterm=bold ctermfg=7
48
- :hi Todo guifg=orangered guibg=yellow2
49
- :hi Directory ctermfg=darkcyan
50
- :hi ErrorMsg cterm=bold guifg=White guibg=Red cterm=bold ctermfg=7 ctermbg=1
51
- :hi VisualNOS cterm=bold,underline
52
- :hi WildMenu ctermfg=0 ctermbg=3
53
- :hi DiffAdd ctermbg=4
54
- :hi DiffChange ctermbg=5
55
- :hi DiffDelete cterm=bold ctermfg=4 ctermbg=6
56
- :hi DiffText cterm=bold ctermbg=1
57
- :hi Underlined cterm=underline ctermfg=5
58
- :hi Error guifg=White guibg=Red cterm=bold ctermfg=7 ctermbg=1
59
- :hi SpellErrors guifg=White guibg=Red cterm=bold ctermfg=7 ctermbg=1
@@ -1,32 +0,0 @@
1
- " Based on
2
- runtime colors/ir_black.vim
3
-
4
- let g:colors_name = "grb256"
5
-
6
- hi pythonSpaceError ctermbg=red guibg=red
7
-
8
- hi Comment ctermfg=darkgray
9
-
10
- hi StatusLine ctermbg=darkgrey ctermfg=white
11
- hi StatusLineNC ctermbg=black ctermfg=lightgrey
12
- hi VertSplit ctermbg=black ctermfg=lightgrey
13
- hi LineNr ctermfg=darkgray
14
- hi CursorLine guifg=NONE guibg=#121212 gui=NONE ctermfg=NONE ctermbg=234
15
- hi Function guifg=#FFD2A7 guibg=NONE gui=NONE ctermfg=yellow ctermbg=NONE cterm=NONE
16
- hi Visual guifg=NONE guibg=#262D51 gui=NONE ctermfg=NONE ctermbg=236 cterm=NONE
17
-
18
- hi Error guifg=NONE guibg=NONE gui=undercurl ctermfg=16 ctermbg=red cterm=NONE guisp=#FF6C60 " undercurl color
19
- hi ErrorMsg guifg=white guibg=#FF6C60 gui=BOLD ctermfg=16 ctermbg=red cterm=NONE
20
- hi WarningMsg guifg=white guibg=#FF6C60 gui=BOLD ctermfg=16 ctermbg=red cterm=NONE
21
- hi SpellBad guifg=white guibg=#FF6C60 gui=BOLD ctermfg=16 ctermbg=160 cterm=NONE
22
-
23
- " ir_black doesn't highlight operators for some reason
24
- hi Operator guifg=#6699CC guibg=NONE gui=NONE ctermfg=lightblue ctermbg=NONE cterm=NONE
25
-
26
- highlight DiffAdd term=reverse cterm=bold ctermbg=lightgreen ctermfg=16
27
- highlight DiffChange term=reverse cterm=bold ctermbg=lightblue ctermfg=16
28
- highlight DiffText term=reverse cterm=bold ctermbg=lightgray ctermfg=16
29
- highlight DiffDelete term=reverse cterm=bold ctermbg=lightred ctermfg=16
30
-
31
- highlight PmenuSel ctermfg=16 ctermbg=156
32
-
@@ -1,23 +0,0 @@
1
- " Based on
2
- runtime colors/ir_black.vim
3
-
4
- let g:colors_name = "grb"
5
-
6
- hi pythonSpaceError ctermbg=red guibg=red
7
-
8
- " hi Comment ctermfg=darkyellow
9
-
10
- hi Normal guibg=#101010
11
- hi NonText guibg=#101010
12
- hi LineNr guibg=#101010
13
-
14
- hi CursorLine guibg=#181818
15
- hi CursorColumn guibg=#181818
16
-
17
- hi VertSplit guifg=#303030 guibg=#303030
18
- hi StatusLine guifg=#000000 guibg=#a0a0a0
19
- hi StatusLineNC guifg=#888888 guibg=#303030
20
-
21
- " ir_black doesn't highlight operators for some reason
22
- hi Operator guifg=#6699CC guibg=NONE gui=NONE ctermfg=lightblue ctermbg=NONE cterm=NONE
23
-
@@ -1,17 +0,0 @@
1
- " Based on
2
- runtime colors/ir_black.vim
3
-
4
- let g:colors_name = "grb4"
5
-
6
- hi pythonSpaceError ctermbg=red guibg=red
7
-
8
- hi Comment ctermfg=darkyellow
9
-
10
- hi StatusLine ctermbg=lightgrey ctermfg=black
11
- hi StatusLineNC ctermbg=lightgrey ctermfg=black
12
- hi VertSplit ctermbg=lightgrey ctermfg=black
13
- hi LineNr ctermfg=lightgrey
14
-
15
- " ir_black doesn't highlight operators for some reason
16
- hi Operator guifg=#6699CC guibg=NONE gui=NONE ctermfg=lightblue ctermbg=NONE cterm=NONE
17
-
@@ -1,15 +0,0 @@
1
- " Based on
2
- runtime colors/Default.vim
3
-
4
- hi clear
5
- set background=light
6
-
7
- syntax reset
8
-
9
- let g:colors_name = "grb"
10
-
11
- " hi Statement ctermfg=yellow
12
- hi Comment ctermfg=DarkYellow
13
- hi Statement ctermfg=Blue
14
- hi Identifier ctermfg=Green
15
-
@@ -1,14 +0,0 @@
1
- " Based on
2
- runtime colors/Default.vim
3
-
4
- hi clear
5
- set background=light
6
-
7
- syntax reset
8
-
9
- let g:colors_name = "grb"
10
-
11
- " hi Statement ctermfg=yellow
12
- hi Comment ctermfg=DarkYellow
13
- hi Statement ctermfg=Blue
14
-
@@ -1,212 +0,0 @@
1
- " ir_black color scheme
2
- " More at: http://blog.infinitered.com/entries/show/8
3
-
4
-
5
- " ********************************************************************************
6
- " Standard colors used in all ir_black themes:
7
- " Note, x:x:x are RGB values
8
- "
9
- " normal: #f6f3e8
10
- "
11
- " string: #A8FF60 168:255:96
12
- " string inner (punc, code, etc): #00A0A0 0:160:160
13
- " number: #FF73FD 255:115:253
14
- " comments: #7C7C7C 124:124:124
15
- " keywords: #96CBFE 150:203:254
16
- " operators: white
17
- " class: #FFFFB6 255:255:182
18
- " method declaration name: #FFD2A7 255:210:167
19
- " regular expression: #E9C062 233:192:98
20
- " regexp alternate: #FF8000 255:128:0
21
- " regexp alternate 2: #B18A3D 177:138:61
22
- " variable: #C6C5FE 198:197:254
23
- "
24
- " Misc colors:
25
- " red color (used for whatever): #FF6C60 255:108:96
26
- " light red: #FFB6B0 255:182:176
27
- "
28
- " brown: #E18964 good for special
29
- "
30
- " lightpurpleish: #FFCCFF
31
- "
32
- " Interface colors:
33
- " background color: black
34
- " cursor (where underscore is used): #FFA560 255:165:96
35
- " cursor (where block is used): white
36
- " visual selection: #1D1E2C
37
- " current line: #151515 21:21:21
38
- " search selection: #07281C 7:40:28
39
- " line number: #3D3D3D 61:61:61
40
-
41
-
42
- " ********************************************************************************
43
- " The following are the preferred 16 colors for your terminal
44
- " Colors Bright Colors
45
- " Black #4E4E4E #7C7C7C
46
- " Red #FF6C60 #FFB6B0
47
- " Green #A8FF60 #CEFFAB
48
- " Yellow #FFFFB6 #FFFFCB
49
- " Blue #96CBFE #FFFFCB
50
- " Magenta #FF73FD #FF9CFE
51
- " Cyan #C6C5FE #DFDFFE
52
- " White #EEEEEE #FFFFFF
53
-
54
-
55
- " ********************************************************************************
56
- set background=dark
57
- hi clear
58
-
59
- if exists("syntax_on")
60
- syntax reset
61
- endif
62
-
63
- let colors_name = "ir_black"
64
-
65
-
66
- "hi Example guifg=NONE guibg=NONE gui=NONE ctermfg=NONE ctermbg=NONE cterm=NONE
67
-
68
- " General colors
69
- hi Normal guifg=#f6f3e8 guibg=black gui=NONE ctermfg=NONE ctermbg=NONE cterm=NONE
70
- hi NonText guifg=#070707 guibg=black gui=NONE ctermfg=black ctermbg=NONE cterm=NONE
71
-
72
- hi Cursor guifg=black guibg=white gui=NONE ctermfg=black ctermbg=white cterm=reverse
73
- hi LineNr guifg=#3D3D3D guibg=black gui=NONE ctermfg=darkgray ctermbg=NONE cterm=NONE
74
-
75
- hi VertSplit guifg=#202020 guibg=#202020 gui=NONE ctermfg=darkgray ctermbg=darkgray cterm=NONE
76
- hi StatusLine guifg=#CCCCCC guibg=#202020 gui=italic ctermfg=white ctermbg=darkgray cterm=NONE
77
- hi StatusLineNC guifg=black guibg=#202020 gui=NONE ctermfg=blue ctermbg=darkgray cterm=NONE
78
-
79
- hi Folded guifg=#a0a8b0 guibg=#384048 gui=NONE ctermfg=NONE ctermbg=NONE cterm=NONE
80
- hi Title guifg=#f6f3e8 guibg=NONE gui=bold ctermfg=NONE ctermbg=NONE cterm=NONE
81
- hi Visual guifg=NONE guibg=#262D51 gui=NONE ctermfg=NONE ctermbg=darkgray cterm=NONE
82
-
83
- hi SpecialKey guifg=#808080 guibg=#343434 gui=NONE ctermfg=NONE ctermbg=NONE cterm=NONE
84
-
85
- hi WildMenu guifg=green guibg=yellow gui=NONE ctermfg=black ctermbg=yellow cterm=NONE
86
- hi PmenuSbar guifg=black guibg=white gui=NONE ctermfg=black ctermbg=white cterm=NONE
87
- "hi Ignore guifg=gray guibg=black gui=NONE ctermfg=NONE ctermbg=NONE cterm=NONE
88
-
89
- hi Error guifg=NONE guibg=NONE gui=undercurl ctermfg=white ctermbg=red cterm=NONE guisp=#FF6C60 " undercurl color
90
- hi ErrorMsg guifg=white guibg=#FF6C60 gui=BOLD ctermfg=white ctermbg=red cterm=NONE
91
- hi WarningMsg guifg=white guibg=#FF6C60 gui=BOLD ctermfg=white ctermbg=red cterm=NONE
92
-
93
- " Message displayed in lower left, such as --INSERT--
94
- hi ModeMsg guifg=black guibg=#C6C5FE gui=BOLD ctermfg=black ctermbg=cyan cterm=BOLD
95
-
96
- if version >= 700 " Vim 7.x specific colors
97
- hi CursorLine guifg=NONE guibg=#121212 gui=NONE ctermfg=NONE ctermbg=NONE cterm=BOLD
98
- hi CursorColumn guifg=NONE guibg=#121212 gui=NONE ctermfg=NONE ctermbg=NONE cterm=BOLD
99
- hi MatchParen guifg=#f6f3e8 guibg=#857b6f gui=BOLD ctermfg=white ctermbg=darkgray cterm=NONE
100
- hi Pmenu guifg=#f6f3e8 guibg=#444444 gui=NONE ctermfg=NONE ctermbg=NONE cterm=NONE
101
- hi PmenuSel guifg=#000000 guibg=#cae682 gui=NONE ctermfg=NONE ctermbg=NONE cterm=NONE
102
- hi Search guifg=NONE guibg=NONE gui=underline ctermfg=NONE ctermbg=NONE cterm=underline
103
- endif
104
-
105
- " Syntax highlighting
106
- hi Comment guifg=#7C7C7C guibg=NONE gui=NONE ctermfg=darkgray ctermbg=NONE cterm=NONE
107
- hi String guifg=#A8FF60 guibg=NONE gui=NONE ctermfg=green ctermbg=NONE cterm=NONE
108
- hi Number guifg=#FF73FD guibg=NONE gui=NONE ctermfg=magenta ctermbg=NONE cterm=NONE
109
-
110
- hi Keyword guifg=#96CBFE guibg=NONE gui=NONE ctermfg=blue ctermbg=NONE cterm=NONE
111
- hi PreProc guifg=#96CBFE guibg=NONE gui=NONE ctermfg=blue ctermbg=NONE cterm=NONE
112
- hi Conditional guifg=#6699CC guibg=NONE gui=NONE ctermfg=blue ctermbg=NONE cterm=NONE " if else end
113
-
114
- hi Todo guifg=#8f8f8f guibg=NONE gui=NONE ctermfg=red ctermbg=NONE cterm=NONE
115
- hi Constant guifg=#99CC99 guibg=NONE gui=NONE ctermfg=cyan ctermbg=NONE cterm=NONE
116
-
117
- hi Identifier guifg=#C6C5FE guibg=NONE gui=NONE ctermfg=cyan ctermbg=NONE cterm=NONE
118
- hi Function guifg=#FFD2A7 guibg=NONE gui=NONE ctermfg=brown ctermbg=NONE cterm=NONE
119
- hi Type guifg=#FFFFB6 guibg=NONE gui=NONE ctermfg=yellow ctermbg=NONE cterm=NONE
120
- hi Statement guifg=#6699CC guibg=NONE gui=NONE ctermfg=lightblue ctermbg=NONE cterm=NONE
121
-
122
- hi Special guifg=#E18964 guibg=NONE gui=NONE ctermfg=white ctermbg=NONE cterm=NONE
123
- hi Delimiter guifg=#00A0A0 guibg=NONE gui=NONE ctermfg=cyan ctermbg=NONE cterm=NONE
124
- hi Operator guifg=white guibg=NONE gui=NONE ctermfg=white ctermbg=NONE cterm=NONE
125
-
126
- hi link Character Constant
127
- hi link Boolean Constant
128
- hi link Float Number
129
- hi link Repeat Statement
130
- hi link Label Statement
131
- hi link Exception Statement
132
- hi link Include PreProc
133
- hi link Define PreProc
134
- hi link Macro PreProc
135
- hi link PreCondit PreProc
136
- hi link StorageClass Type
137
- hi link Structure Type
138
- hi link Typedef Type
139
- hi link Tag Special
140
- hi link SpecialChar Special
141
- hi link SpecialComment Special
142
- hi link Debug Special
143
-
144
-
145
- " Special for Ruby
146
- hi rubyRegexp guifg=#B18A3D guibg=NONE gui=NONE ctermfg=brown ctermbg=NONE cterm=NONE
147
- hi rubyRegexpDelimiter guifg=#FF8000 guibg=NONE gui=NONE ctermfg=brown ctermbg=NONE cterm=NONE
148
- hi rubyEscape guifg=white guibg=NONE gui=NONE ctermfg=cyan ctermbg=NONE cterm=NONE
149
- hi rubyInterpolationDelimiter guifg=#00A0A0 guibg=NONE gui=NONE ctermfg=blue ctermbg=NONE cterm=NONE
150
- hi rubyControl guifg=#6699CC guibg=NONE gui=NONE ctermfg=blue ctermbg=NONE cterm=NONE "and break, etc
151
- "hi rubyGlobalVariable guifg=#FFCCFF guibg=NONE gui=NONE ctermfg=lightblue ctermbg=NONE cterm=NONE "yield
152
- hi rubyStringDelimiter guifg=#336633 guibg=NONE gui=NONE ctermfg=lightgreen ctermbg=NONE cterm=NONE
153
- "rubyInclude
154
- "rubySharpBang
155
- "rubyAccess
156
- "rubyPredefinedVariable
157
- "rubyBoolean
158
- "rubyClassVariable
159
- "rubyBeginEnd
160
- "rubyRepeatModifier
161
- "hi link rubyArrayDelimiter Special " [ , , ]
162
- "rubyCurlyBlock { , , }
163
-
164
- hi link rubyClass Keyword
165
- hi link rubyModule Keyword
166
- hi link rubyKeyword Keyword
167
- hi link rubyOperator Operator
168
- hi link rubyIdentifier Identifier
169
- hi link rubyInstanceVariable Identifier
170
- hi link rubyGlobalVariable Identifier
171
- hi link rubyClassVariable Identifier
172
- hi link rubyConstant Type
173
-
174
-
175
- " Special for Java
176
- " hi link javaClassDecl Type
177
- hi link javaScopeDecl Identifier
178
- hi link javaCommentTitle javaDocSeeTag
179
- hi link javaDocTags javaDocSeeTag
180
- hi link javaDocParam javaDocSeeTag
181
- hi link javaDocSeeTagParam javaDocSeeTag
182
-
183
- hi javaDocSeeTag guifg=#CCCCCC guibg=NONE gui=NONE ctermfg=darkgray ctermbg=NONE cterm=NONE
184
- hi javaDocSeeTag guifg=#CCCCCC guibg=NONE gui=NONE ctermfg=darkgray ctermbg=NONE cterm=NONE
185
- "hi javaClassDecl guifg=#CCFFCC guibg=NONE gui=NONE ctermfg=white ctermbg=NONE cterm=NONE
186
-
187
-
188
- " Special for XML
189
- hi link xmlTag Keyword
190
- hi link xmlTagName Conditional
191
- hi link xmlEndTag Identifier
192
-
193
-
194
- " Special for HTML
195
- hi link htmlTag Keyword
196
- hi link htmlTagName Conditional
197
- hi link htmlEndTag Identifier
198
-
199
-
200
- " Special for Javascript
201
- hi link javaScriptNumber Number
202
-
203
-
204
- " Special for Python
205
- "hi link pythonEscape Keyword
206
-
207
-
208
- " Special for CSharp
209
- hi link csXmlTag Keyword
210
-
211
-
212
- " Special for PHP