tv vim industry: retab & co.

This commit is contained in:
tv 2015-11-01 11:32:51 +01:00
parent c0cfbb5fcf
commit 4cdd35a7ce

View File

@ -21,21 +21,23 @@ let
destination = "/colors/${name}"; destination = "/colors/${name}";
text = '' text = ''
" Vim color file " Vim color file
" Maintainer: Shian Lee " Maintainer: Shian Lee
" Last Change: 2014 Mar 6 (for vim 7.4) " Last Change: 2014 Mar 6 (for vim 7.4)
" Remark: "industry" stands for 'industrial' color scheme. In industrial " Remark: "industry" stands for 'industrial' color scheme. In
" HMI (Human-Machine-Interface) programming, using a standard color " industrial HMI (Human-Machine-Interface) programming,
" scheme is mandatory in many cases (in traffic-lights for example): " using a standard color scheme is mandatory in many cases
" LIGHT_RED is 'Warning' " (in traffic-lights for example):
" LIGHT_YELLOW is 'Attention'
" LIGHT_GREEN is 'Normal'
" LIGHT_MAGENTA is 'Warning-Attention' (light RED-YELLOW)
" LIGHT_CYAN is 'Attention-Normal' (light YELLOW-GREEN).
" BLACK is Dark-High-Contrast Background for maximum safety.
" BLUE is Shade of BLACK (not supposed to get attention).
" "
" Industrial color scheme is by nature clear, safe and productive. " LIGHT_RED is 'Warning'
" Yet, depends on the file type's syntax, it might appear incorrect. " LIGHT_YELLOW is 'Attention'
" LIGHT_GREEN is 'Normal'
" LIGHT_MAGENTA is 'Warning-Attention' (light RED-YELLOW)
" LIGHT_CYAN is 'Attention-Normal' (light YELLOW-GREEN).
" BLACK is Dark-High-Contrast Background for maximum safety.
" BLUE is Shade of BLACK (not supposed to get attention).
"
" Industrial color scheme is by nature clear, safe and productive.
" Yet, depends on the file type's syntax, it might appear incorrect.
" Reset to dark background, then reset everything to defaults: " Reset to dark background, then reset everything to defaults:
set background=dark set background=dark
@ -47,18 +49,19 @@ let
let colors_name = "industry" let colors_name = "industry"
" First set Normal to regular white on black text colors: " First set Normal to regular white on black text colors:
hi Normal ctermfg=LightGray ctermbg=Black guifg=#dddddd guibg=Black hi Normal ctermfg=LightGray ctermbg=Black guifg=#dddddd guibg=Black
" Syntax highlighting (other color-groups using default, see :help group-name): " Syntax highlighting
hi Comment cterm=NONE ctermfg=DarkCyan gui=NONE guifg=#00aaaa " (other color-groups using default, see :help group-name):
hi Constant cterm=NONE ctermfg=LightCyan gui=NONE guifg=#00ffff hi Comment cterm=NONE ctermfg=DarkCyan gui=NONE guifg=#00aaaa
hi Identifier cterm=NONE ctermfg=LightMagenta gui=NONE guifg=#ff00ff hi Constant cterm=NONE ctermfg=LightCyan gui=NONE guifg=#00ffff
hi Function cterm=NONE ctermfg=LightGreen gui=NONE guifg=#00ff00 hi Identifier cterm=NONE ctermfg=LightMagenta gui=NONE guifg=#ff00ff
hi Statement cterm=NONE ctermfg=White gui=bold guifg=#ffffff hi Function cterm=NONE ctermfg=LightGreen gui=NONE guifg=#00ff00
hi PreProc cterm=NONE ctermfg=Yellow gui=NONE guifg=#ffff00 hi Statement cterm=NONE ctermfg=White gui=bold guifg=#ffffff
hi Type cterm=NONE ctermfg=LightGreen gui=bold guifg=#00ff00 hi PreProc cterm=NONE ctermfg=Yellow gui=NONE guifg=#ffff00
hi Special cterm=NONE ctermfg=LightRed gui=NONE guifg=#ff0000 hi Type cterm=NONE ctermfg=LightGreen gui=bold guifg=#00ff00
hi Delimiter cterm=NONE ctermfg=Yellow gui=NONE guifg=#ffff00 hi Special cterm=NONE ctermfg=LightRed gui=NONE guifg=#ff0000
hi Delimiter cterm=NONE ctermfg=Yellow gui=NONE guifg=#ffff00
''; '';
}; };