Created
June 30, 2015 01:25
-
-
Save hkmix/41492855c3fcc7a9393b to your computer and use it in GitHub Desktop.
Vim theme for only colours, adapted from industry.vim
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
set background=dark | |
highlight clear | |
if exists("syntax_on") | |
syntax reset | |
endif | |
let colors_name = "comments" | |
" 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=08 | |
hi Constant cterm=NONE ctermfg=White | |
hi Identifier cterm=NONE ctermfg=White | |
hi Function cterm=NONE ctermfg=White | |
hi Statement cterm=NONE ctermfg=White | |
hi PreProc cterm=NONE ctermfg=White | |
hi Type cterm=NONE ctermfg=White | |
hi Special cterm=NONE ctermfg=White | |
hi Delimiter cterm=NONE ctermfg=White |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment