diff options
| author | Benjamin Linskey | 2018-04-13 22:46:02 -0400 |
|---|---|---|
| committer | Benjamin Linskey | 2018-04-13 22:46:02 -0400 |
| commit | 7711f0d4d9323d5a3a742abc5cb2cdc7754314a9 (patch) | |
| tree | 1fb3a10b434d39e9d19aeca08472d8e8c17cbda4 | |
| parent | 6ad43ecdad5de9c758ec773ff15b8cdfb359197e (diff) | |
| download | btl.vim-7711f0d4d9323d5a3a742abc5cb2cdc7754314a9.tar.gz | |
Moved name definition
The g:colorsname variable is now set immediately after the tCo check.
| -rw-r--r-- | colors/btl.vim | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/colors/btl.vim b/colors/btl.vim index eba403e..69022b6 100644 --- a/colors/btl.vim +++ b/colors/btl.vim @@ -24,14 +24,14 @@ if &t_Co < 256 echoerr "Colorscheme requires 256-color terminal" endif +let g:colors_name="btl" + 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 |