diff options
| author | Benjamin Linskey | 2018-04-13 22:43:33 -0400 |
|---|---|---|
| committer | Benjamin Linskey | 2018-04-13 22:43:33 -0400 |
| commit | 8b89fdbb80bfd5b0870e7818c15eb53e056c7f27 (patch) | |
| tree | 64e65f44e946162c71ab75b74727ef7f3b0d2553 | |
| parent | 9188e45e389d13af26da716533eeaceacb4c169c (diff) | |
| download | btl.vim-8b89fdbb80bfd5b0870e7818c15eb53e056c7f27.tar.gz | |
Move and improve comments
| -rw-r--r-- | colors/btl.vim | 37 |
1 files changed, 17 insertions, 20 deletions
diff --git a/colors/btl.vim b/colors/btl.vim index 842a828..834c7ce 100644 --- a/colors/btl.vim +++ b/colors/btl.vim @@ -1,19 +1,6 @@ " btl.vim colorscheme " Maintainer: Benjamin Linskey <vim@linskey.org> " URL: https://github.com/blinskey/btl.vim -" License: ISC - -if &t_Co < 256 - echoerr "Colorscheme requires 256-color terminal" -endif - -set background=dark -highlight clear -if exists("syntax_on") - syntax reset -endif - -let g:colors_name="btl" " Grayscale colors used here: " @@ -22,19 +9,29 @@ let g:colors_name="btl" " 236 -- gray ColorColumn " 235 -- dark gray cursorline " 238 -- gray visual highlight -" 232 -- black -- various UI elements -" 246 -- gray -- various UI elements +" 232 -- black: various UI elements +" 246 -- gray: various UI elements " " A few subtle colors that could be added: " -" 167 -- red -" 110 -- blue -" 114 -- green +" 167 -- red: error +" 110 -- blue: warning +" 114 -- green: info " -" (167 is currently used for the Error group.) - " See h: group-name, highlight-groups +if &t_Co < 256 + echoerr "Colorscheme requires 256-color terminal" +endif + +set background=dark +highlight clear +if exists("syntax_on") + syntax reset +endif + +let g:colors_name="btl" + hi Normal ctermbg=234 ctermfg=251 hi! Comment ctermfg=244 hi! String ctermbg=234 ctermfg=251 cterm=bold |