aboutsummaryrefslogtreecommitdiff
path: root/colors/juvenile.vim
diff options
context:
space:
mode:
Diffstat (limited to 'colors/juvenile.vim')
-rw-r--r--colors/juvenile.vim22
1 files changed, 22 insertions, 0 deletions
diff --git a/colors/juvenile.vim b/colors/juvenile.vim
new file mode 100644
index 0000000..162ad1b
--- /dev/null
+++ b/colors/juvenile.vim
@@ -0,0 +1,22 @@
+"
+" juvenile.vim -- Show comments in grey if colour available, in defiance of
+" Commander Pike, but nothing else, in deference to Commander Pike.
+"
+" <https://groups.google.com/forum/#!msg/golang-nuts/hJHCAaiL0so/kG3BHV6QFfIJ>
+"
+set background=dark
+highlight clear
+syntax reset
+let g:colors_name="juvenile"
+if has("gui_running") || &t_Co == 256
+ highlight Comment cterm=NONE ctermfg=246 ctermbg=NONE gui=NONE guifg=#a0a0a0 guibg=NONE
+ highlight NonText cterm=NONE ctermfg=246 ctermbg=NONE gui=NONE guifg=#a0a0a0 guibg=NONE
+ highlight Constant cterm=NONE ctermfg=NONE ctermbg=NONE gui=NONE guifg=NONE guibg=NONE
+ highlight Identifier cterm=NONE ctermfg=NONE ctermbg=NONE gui=NONE guifg=NONE guibg=NONE
+ highlight Function cterm=NONE ctermfg=NONE ctermbg=NONE gui=NONE guifg=NONE guibg=NONE
+ highlight Statement cterm=NONE ctermfg=NONE ctermbg=NONE gui=NONE guifg=NONE guibg=NONE
+ highlight PreProc cterm=NONE ctermfg=NONE ctermbg=NONE gui=NONE guifg=NONE guibg=NONE
+ highlight Type cterm=NONE ctermfg=NONE ctermbg=NONE gui=NONE guifg=NONE guibg=NONE
+ highlight Special cterm=NONE ctermfg=NONE ctermbg=NONE gui=NONE guifg=NONE guibg=NONE
+ highlight Delimiter cterm=NONE ctermfg=NONE ctermbg=NONE gui=NONE guifg=NONE guibg=NONE
+endif