dotman 0.0.3 → 0.0.3.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/bin/dot +10 -1
- data/lib/dotman.rb +1 -0
- data/lib/dotman/collect.rb +27 -0
- data/lib/dotman/dotfile_collection.rb +8 -0
- data/lib/dotman/git.rb +0 -1
- data/lib/dotman/version.rb +1 -1
- data/spec/data/Timbinous_dotfiles/.bashrc +121 -0
- data/spec/data/Timbinous_dotfiles/.gitignore +5 -0
- data/spec/data/Timbinous_dotfiles/.tmux.conf +15 -0
- data/spec/data/Timbinous_dotfiles/.vim/autoload/pathogen.vim +245 -0
- data/spec/data/Timbinous_dotfiles/.vim/bundle/.gitkeep +0 -0
- data/spec/data/Timbinous_dotfiles/.vim/colors/Black.vim +16 -0
- data/spec/data/Timbinous_dotfiles/.vim/colors/Dark.vim +63 -0
- data/spec/data/Timbinous_dotfiles/.vim/colors/autumnleaf.vim +154 -0
- data/spec/data/Timbinous_dotfiles/.vim/colors/c.vim +32 -0
- data/spec/data/Timbinous_dotfiles/.vim/colors/darkzen.vim +25 -0
- data/spec/data/Timbinous_dotfiles/.vim/colors/grb.vim +13 -0
- data/spec/data/Timbinous_dotfiles/.vim/colors/grb.vim~ +13 -0
- data/spec/data/Timbinous_dotfiles/.vim/colors/grb2.vim +59 -0
- data/spec/data/Timbinous_dotfiles/.vim/colors/grb256.vim +32 -0
- data/spec/data/Timbinous_dotfiles/.vim/colors/grb3.vim +23 -0
- data/spec/data/Timbinous_dotfiles/.vim/colors/grb4.vim +17 -0
- data/spec/data/Timbinous_dotfiles/.vim/colors/grblight.vim +15 -0
- data/spec/data/Timbinous_dotfiles/.vim/colors/grblight.vim~ +14 -0
- data/spec/data/Timbinous_dotfiles/.vim/colors/ir_black.vim +212 -0
- data/spec/data/Timbinous_dotfiles/.vim/colors/moria.vim +227 -0
- data/spec/data/Timbinous_dotfiles/.vim/colors/pyte.vim +92 -0
- data/spec/data/Timbinous_dotfiles/.vim/colors/redstring.vim +26 -0
- data/spec/data/Timbinous_dotfiles/.vim/colors/xterm16.vim +811 -0
- data/spec/data/Timbinous_dotfiles/.vim/spell/en.utf-8.add +5 -0
- data/spec/data/Timbinous_dotfiles/.vim/spell/en.utf-8.add.spl +0 -0
- data/spec/data/Timbinous_dotfiles/.vimrc +70 -0
- data/spec/data/Timbinous_dotfiles/.zshrc +62 -0
- data/spec/data/Timbinous_dotfiles/symlinkify +58 -0
- data/spec/data/Timbinous_dotfiles/tim.zsh-theme +29 -0
- data/spec/dotman/collect_spec.rb +59 -0
- data/spec/integration/dotfile_collection_integration_spec.rb +18 -4
- data/spec/integration/git_integration_spec.rb +6 -10
- data/spec/integration/user_integration_spec.rb +12 -5
- data/spec/spec_helper.rb +9 -1
- metadata +63 -2
File without changes
|
@@ -0,0 +1,16 @@
|
|
1
|
+
" It's based on:
|
2
|
+
runtime colors/Dark.vim
|
3
|
+
|
4
|
+
let g:colors_name = "Black"
|
5
|
+
|
6
|
+
hi Normal guibg=black guifg=GhostWhite
|
7
|
+
hi NonText guibg=grey10
|
8
|
+
|
9
|
+
" More faded is too similar to blue on LCDs.
|
10
|
+
"hi Identifier guifg=#90CC90
|
11
|
+
hi Identifier guifg=#60CC60
|
12
|
+
|
13
|
+
" Experimental:
|
14
|
+
" Stick with the default for a while...
|
15
|
+
"hi Cursor guibg=red2 guifg=white
|
16
|
+
|
@@ -0,0 +1,63 @@
|
|
1
|
+
"
|
2
|
+
" Restore default colors
|
3
|
+
hi clear
|
4
|
+
set background=dark
|
5
|
+
|
6
|
+
|
7
|
+
if exists("syntax_on")
|
8
|
+
syntax reset
|
9
|
+
endif
|
10
|
+
|
11
|
+
let g:colors_name = "Dark"
|
12
|
+
|
13
|
+
|
14
|
+
hi Normal guibg=grey20 guifg=GhostWhite
|
15
|
+
hi NonText guibg=grey15 guifg=yellow3
|
16
|
+
"hi Cursor guibg=GhostWhite
|
17
|
+
"hi Cursor guibg=red guifg=white
|
18
|
+
hi Cursor guibg=green2 guifg=black
|
19
|
+
|
20
|
+
hi Statement guifg=tan
|
21
|
+
hi Constant guifg=#FF7070
|
22
|
+
hi String guifg=#ffa0a0
|
23
|
+
hi Comment guifg=SkyBlue
|
24
|
+
hi PreProc guifg=orchid2
|
25
|
+
hi Character guifg=Cyan
|
26
|
+
hi Type guifg=orange gui=none
|
27
|
+
hi Special guifg=#DDDD00
|
28
|
+
hi Identifier guifg=#60DD60
|
29
|
+
hi link Function Identifier
|
30
|
+
"hi Function guifg=#ffa0a0
|
31
|
+
|
32
|
+
" Slight tweaks after some time away:
|
33
|
+
hi Type guifg=LightMagenta
|
34
|
+
hi PreProc guifg=orange2
|
35
|
+
|
36
|
+
|
37
|
+
hi link SpecialKey Comment
|
38
|
+
hi link Directory Comment
|
39
|
+
|
40
|
+
"
|
41
|
+
" Colors not part of the original set:
|
42
|
+
"
|
43
|
+
"hi Folded guifg=cyan4 guibg=grey20
|
44
|
+
hi Folded guifg=grey90 guibg=grey45
|
45
|
+
hi Visual gui=reverse guibg=fg guifg=darkolivegreen
|
46
|
+
hi Search guifg=black guibg=LightSkyBlue3 gui=none
|
47
|
+
"hi IncSearch guifg=yellow guibg=LightSkyBlue3 gui=bold
|
48
|
+
hi IncSearch guibg=blue guifg=yellow gui=bold
|
49
|
+
hi WarningMsg guifg=red guibg=GhostWhite gui=bold
|
50
|
+
hi Error guibg=red3
|
51
|
+
|
52
|
+
|
53
|
+
" Here are the original colors:
|
54
|
+
"hi guifg=grey70 gui=bold
|
55
|
+
"hi guifg=#FF7070 gui=bold
|
56
|
+
"hi guifg=green gui=bold
|
57
|
+
"hi guifg=yellow gui=bold
|
58
|
+
"hi guifg=SkyBlue gui=bold
|
59
|
+
"hi guifg=orchid1 gui=bold
|
60
|
+
"hi guifg=Cyan gui=bold
|
61
|
+
"hi guifg=White gui=bold
|
62
|
+
"
|
63
|
+
|
@@ -0,0 +1,154 @@
|
|
1
|
+
" Vim color file
|
2
|
+
" Maintainer: Anders Korte
|
3
|
+
" Last Change: 17 Oct 2004
|
4
|
+
|
5
|
+
" AutumnLeaf color scheme 1.0
|
6
|
+
|
7
|
+
set background=light
|
8
|
+
|
9
|
+
hi clear
|
10
|
+
|
11
|
+
if exists("syntax_on")
|
12
|
+
syntax reset
|
13
|
+
endif
|
14
|
+
|
15
|
+
let colors_name="AutumnLeaf"
|
16
|
+
|
17
|
+
|
18
|
+
" Colors for the User Interface.
|
19
|
+
|
20
|
+
hi Cursor guibg=#aa7733 guifg=#ffeebb gui=bold
|
21
|
+
hi Normal guibg=#fffdfa guifg=black gui=none
|
22
|
+
hi NonText guibg=#eafaea guifg=#000099 gui=bold
|
23
|
+
hi Visual guibg=#fff8cc guifg=black gui=none
|
24
|
+
" hi VisualNOS
|
25
|
+
|
26
|
+
hi Linenr guibg=bg guifg=#999999 gui=none
|
27
|
+
|
28
|
+
" Uncomment these if you use Diff...??
|
29
|
+
" hi DiffText guibg=#cc0000 guifg=white gui=none
|
30
|
+
" hi DiffAdd guibg=#0000cc guifg=white gui=none
|
31
|
+
" hi DiffChange guibg=#990099 guifg=white gui=none
|
32
|
+
" hi DiffDelete guibg=#888888 guifg=#333333 gui=none
|
33
|
+
|
34
|
+
hi Directory guibg=bg guifg=#337700 gui=none
|
35
|
+
|
36
|
+
hi IncSearch guibg=#c8e8ff guifg=black gui=none
|
37
|
+
hi Search guibg=#c8e8ff guifg=black gui=none
|
38
|
+
hi SpecialKey guibg=bg guifg=fg gui=none
|
39
|
+
hi Titled guibg=bg guifg=fg gui=none
|
40
|
+
|
41
|
+
hi ErrorMsg guibg=bg guifg=#cc0000 gui=bold
|
42
|
+
hi ModeMsg guibg=bg guifg=#003399 gui=none
|
43
|
+
hi link MoreMsg ModeMsg
|
44
|
+
hi link Question ModeMsg
|
45
|
+
hi WarningMsg guibg=bg guifg=#cc0000 gui=bold
|
46
|
+
|
47
|
+
hi StatusLine guibg=#ffeebb guifg=black gui=bold
|
48
|
+
hi StatusLineNC guibg=#aa8866 guifg=#f8e8cc gui=none
|
49
|
+
hi VertSplit guibg=#aa8866 guifg=#ffe0bb gui=none
|
50
|
+
|
51
|
+
" hi Folded
|
52
|
+
" hi FoldColumn
|
53
|
+
" hi SignColumn
|
54
|
+
|
55
|
+
|
56
|
+
" Colors for Syntax Highlighting.
|
57
|
+
|
58
|
+
hi Comment guibg=#ddeedd guifg=#002200 gui=none
|
59
|
+
|
60
|
+
hi Constant guibg=bg guifg=#003399 gui=bold
|
61
|
+
hi String guibg=bg guifg=#003399 gui=italic
|
62
|
+
hi Character guibg=bg guifg=#003399 gui=italic
|
63
|
+
hi Number guibg=bg guifg=#003399 gui=bold
|
64
|
+
hi Boolean guibg=bg guifg=#003399 gui=bold
|
65
|
+
hi Float guibg=bg guifg=#003399 gui=bold
|
66
|
+
|
67
|
+
hi Identifier guibg=bg guifg=#003399 gui=none
|
68
|
+
hi Function guibg=bg guifg=#0055aa gui=bold
|
69
|
+
hi Statement guibg=bg guifg=#003399 gui=none
|
70
|
+
|
71
|
+
hi Conditional guibg=bg guifg=#aa7733 gui=bold
|
72
|
+
hi Repeat guibg=bg guifg=#aa5544 gui=bold
|
73
|
+
hi link Label Conditional
|
74
|
+
hi Operator guibg=bg guifg=#aa7733 gui=bold
|
75
|
+
hi link Keyword Statement
|
76
|
+
hi Exception guibg=bg guifg=#228877 gui=bold
|
77
|
+
|
78
|
+
hi PreProc guibg=bg guifg=#aa7733 gui=bold
|
79
|
+
hi Include guibg=bg guifg=#558811 gui=bold
|
80
|
+
hi link Define Include
|
81
|
+
hi link Macro Include
|
82
|
+
hi link PreCondit Include
|
83
|
+
|
84
|
+
hi Type guibg=bg guifg=#007700 gui=bold
|
85
|
+
hi link StorageClass Type
|
86
|
+
hi link Structure Type
|
87
|
+
hi Typedef guibg=bg guifg=#009900 gui=italic
|
88
|
+
|
89
|
+
hi Special guibg=bg guifg=fg gui=none
|
90
|
+
hi SpecialChar guibg=bg guifg=fg gui=bold
|
91
|
+
hi Tag guibg=bg guifg=#003399 gui=bold
|
92
|
+
hi link Delimiter Special
|
93
|
+
hi SpecialComment guibg=#dddddd guifg=#aa0000 gui=none
|
94
|
+
hi link Debug Special
|
95
|
+
|
96
|
+
hi Underlined guibg=bg guifg=blue gui=underline
|
97
|
+
|
98
|
+
hi Title guibg=bg guifg=fg gui=bold
|
99
|
+
hi Ignore guibg=bg guifg=#999999 gui=none
|
100
|
+
hi Error guibg=red guifg=white gui=none
|
101
|
+
hi Todo guibg=bg guifg=#aa0000 gui=none
|
102
|
+
|
103
|
+
|
104
|
+
|
105
|
+
" The same in cterm colors.
|
106
|
+
hi Cursor ctermbg=6 ctermfg=14
|
107
|
+
hi Normal ctermbg=15 ctermfg=0
|
108
|
+
hi NonText ctermbg=10 ctermfg=1
|
109
|
+
hi Visual ctermbg=14 ctermfg=0
|
110
|
+
" hi VisualNOS
|
111
|
+
hi Linenr ctermbg=bg ctermfg=7
|
112
|
+
" hi DiffText ctermbg=4 ctermfg=15
|
113
|
+
" hi DiffAdd ctermbg=1 ctermfg=15
|
114
|
+
" hi DiffChange ctermbg=5 ctermfg=15
|
115
|
+
" hi DiffDelete ctermbg=7 ctermfg=8
|
116
|
+
hi Directory ctermbg=bg ctermfg=2
|
117
|
+
hi IncSearch ctermbg=9 ctermfg=0
|
118
|
+
hi Search ctermbg=9 ctermfg=0
|
119
|
+
hi SpecialKey ctermbg=bg ctermfg=fg
|
120
|
+
hi Titled ctermbg=bg ctermfg=fg
|
121
|
+
hi ErrorMsg ctermbg=bg ctermfg=12
|
122
|
+
hi ModeMsg ctermbg=bg ctermfg=9
|
123
|
+
hi WarningMsg ctermbg=bg ctermfg=12
|
124
|
+
hi StatusLine ctermbg=14 ctermfg=0
|
125
|
+
hi StatusLineNC ctermbg=6 ctermfg=14
|
126
|
+
hi VertSplit ctermbg=6 ctermfg=14
|
127
|
+
" hi Folded
|
128
|
+
" hi FoldColumn
|
129
|
+
" hi SignColumn
|
130
|
+
hi Comment ctermbg=10 ctermfg=2
|
131
|
+
hi Constant ctermbg=bg ctermfg=9
|
132
|
+
hi String ctermbg=bg ctermfg=9 cterm=italic
|
133
|
+
hi Character ctermbg=bg ctermfg=9 cterm=italic
|
134
|
+
hi Number ctermbg=bg ctermfg=9 cterm=bold
|
135
|
+
hi Boolean ctermbg=bg ctermfg=9 cterm=bold
|
136
|
+
hi Float ctermbg=bg ctermfg=9 cterm=bold
|
137
|
+
hi Function ctermbg=bg ctermfg=9 cterm=bold
|
138
|
+
hi Statement ctermbg=bg ctermfg=9 cterm=bold
|
139
|
+
hi Conditional ctermbg=bg ctermfg=6 cterm=bold
|
140
|
+
hi Repeat ctermbg=bg ctermfg=6 cterm=bold
|
141
|
+
hi Operator ctermbg=bg ctermfg=6 cterm=bold
|
142
|
+
hi Exception ctermbg=bg ctermfg=2 cterm=bold
|
143
|
+
hi PreProc ctermbg=bg ctermfg=6
|
144
|
+
hi Include ctermbg=bg ctermfg=2 cterm=bold
|
145
|
+
hi Type ctermbg=bg ctermfg=2 cterm=bold
|
146
|
+
hi Typedef ctermbg=bg ctermfg=2 cterm=italic
|
147
|
+
hi Special ctermbg=bg ctermfg=fg cterm=bold
|
148
|
+
hi Tag ctermbg=bg ctermfg=9 cterm=bold
|
149
|
+
hi SpecialComment ctermbg=7 ctermfg=4
|
150
|
+
hi Underlined ctermbg=bg ctermfg=9 cterm=underline
|
151
|
+
hi Title ctermbg=bg ctermfg=fg cterm=bold
|
152
|
+
hi Ignore ctermbg=bg ctermfg=7
|
153
|
+
hi Error ctermbg=12 ctermfg=15
|
154
|
+
hi Todo ctermbg=bg ctermfg=15
|
@@ -0,0 +1,32 @@
|
|
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
|
@@ -0,0 +1,25 @@
|
|
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
|
@@ -0,0 +1,59 @@
|
|
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
|
@@ -0,0 +1,32 @@
|
|
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
|
+
|
@@ -0,0 +1,23 @@
|
|
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
|
+
|