Skip to content

Instantly share code, notes, and snippets.

@hkmix
Created June 30, 2015 01:25
Show Gist options
  • Save hkmix/41492855c3fcc7a9393b to your computer and use it in GitHub Desktop.
Save hkmix/41492855c3fcc7a9393b to your computer and use it in GitHub Desktop.
Vim theme for only colours, adapted from industry.vim
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