summaryrefslogtreecommitdiffstats
path: root/tv
diff options
context:
space:
mode:
authortv <tv@shackspace.de>2015-11-01 11:32:51 +0100
committertv <tv@shackspace.de>2015-11-01 11:49:21 +0100
commit4cdd35a7ce88d32279c6b94c682ac6425248fc75 (patch)
tree50ddec08c2bdb67a6788e57a915670a8ee7b49cf /tv
parentc0cfbb5fcfcf0da49bbfa67328ba0b426ad9f321 (diff)
tv vim industry: retab & co.
Diffstat (limited to 'tv')
-rw-r--r--tv/2configs/vim.nix55
1 files changed, 29 insertions, 26 deletions
diff --git a/tv/2configs/vim.nix b/tv/2configs/vim.nix
index 9ff9beb4..053fee81 100644
--- a/tv/2configs/vim.nix
+++ b/tv/2configs/vim.nix
@@ -21,21 +21,23 @@ let
destination = "/colors/${name}";
text = ''
" Vim color file
- " Maintainer: Shian Lee
- " Last Change: 2014 Mar 6 (for vim 7.4)
- " Remark: "industry" stands for 'industrial' color scheme. In industrial
- " HMI (Human-Machine-Interface) programming, using a standard color
- " scheme is mandatory in many cases (in traffic-lights for example):
- " LIGHT_RED is 'Warning'
- " 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).
+ " Maintainer: Shian Lee
+ " Last Change: 2014 Mar 6 (for vim 7.4)
+ " Remark: "industry" stands for 'industrial' color scheme. In
+ " industrial HMI (Human-Machine-Interface) programming,
+ " using a standard color scheme is mandatory in many cases
+ " (in traffic-lights for example):
"
- " Industrial color scheme is by nature clear, safe and productive.
- " Yet, depends on the file type's syntax, it might appear incorrect.
+ " LIGHT_RED is 'Warning'
+ " 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:
set background=dark
@@ -47,18 +49,19 @@ let
let colors_name = "industry"
" First set Normal to regular white on black text colors:
- hi Normal ctermfg=LightGray ctermbg=Black guifg=#dddddd guibg=Black
-
- " Syntax highlighting (other color-groups using default, see :help group-name):
- hi Comment cterm=NONE ctermfg=DarkCyan gui=NONE guifg=#00aaaa
- hi Constant cterm=NONE ctermfg=LightCyan gui=NONE guifg=#00ffff
- hi Identifier cterm=NONE ctermfg=LightMagenta gui=NONE guifg=#ff00ff
- hi Function cterm=NONE ctermfg=LightGreen gui=NONE guifg=#00ff00
- hi Statement cterm=NONE ctermfg=White gui=bold guifg=#ffffff
- hi PreProc cterm=NONE ctermfg=Yellow gui=NONE guifg=#ffff00
- hi Type cterm=NONE ctermfg=LightGreen gui=bold guifg=#00ff00
- hi Special cterm=NONE ctermfg=LightRed gui=NONE guifg=#ff0000
- hi Delimiter cterm=NONE ctermfg=Yellow gui=NONE guifg=#ffff00
+ hi Normal ctermfg=LightGray ctermbg=Black guifg=#dddddd guibg=Black
+
+ " Syntax highlighting
+ " (other color-groups using default, see :help group-name):
+ hi Comment cterm=NONE ctermfg=DarkCyan gui=NONE guifg=#00aaaa
+ hi Constant cterm=NONE ctermfg=LightCyan gui=NONE guifg=#00ffff
+ hi Identifier cterm=NONE ctermfg=LightMagenta gui=NONE guifg=#ff00ff
+ hi Function cterm=NONE ctermfg=LightGreen gui=NONE guifg=#00ff00
+ hi Statement cterm=NONE ctermfg=White gui=bold guifg=#ffffff
+ hi PreProc cterm=NONE ctermfg=Yellow gui=NONE guifg=#ffff00
+ hi Type cterm=NONE ctermfg=LightGreen gui=bold guifg=#00ff00
+ hi Special cterm=NONE ctermfg=LightRed gui=NONE guifg=#ff0000
+ hi Delimiter cterm=NONE ctermfg=Yellow gui=NONE guifg=#ffff00
'';
};