Skip to content

Instantly share code, notes, and snippets.

@Zemnmez
Created July 1, 2014 19:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Zemnmez/58e4629e207348871af4 to your computer and use it in GitHub Desktop.
Save Zemnmez/58e4629e207348871af4 to your computer and use it in GitHub Desktop.
Golang colourscheme for vim.
" Chimera by Zemnmez
" It's a slightly clumsy mix of molokai, zenburn and busybee.
" It has extra highlighting for Go and Python.
" MIT License.
set background=dark
hi clear
if exists("syntax_on")
syntax reset
endif
let colors_name = "chimera"
" Vim >= 7.0 specific colors
if version >= 700
hi CursorLine guibg=#202020 ctermbg=234
hi CursorColumn guibg=#202020 ctermbg=234
hi MatchParen guifg=#d0ffc0 guibg=#202020 gui=bold ctermfg=157 ctermbg=237 cterm=bold
hi Pmenu guifg=#ffffff guibg=#202020 ctermfg=255 ctermbg=238
hi PmenuSel guifg=#000000 guibg=#b1d631 ctermfg=0 ctermbg=148
endif
" General colors
hi Cursor guifg=NONE guibg=#626262 gui=none ctermbg=241
hi Normal ctermfg=253 ctermbg=234 guifg=#e2e2e5 guibg=#202020
hi NonText guifg=#808080 guibg=#202020 gui=none ctermfg=244 ctermbg=235
hi LineNr guifg=#303030 guibg=#202020 gui=none ctermfg=244 ctermbg=232
hi StatusLine guifg=#d3d3d5 guibg=#303030 gui=none ctermfg=253 ctermbg=238
hi StatusLineNC guifg=#939395 guibg=#303030 gui=none ctermfg=246 ctermbg=238
hi VertSplit guifg=#444444 guibg=#303030 gui=none ctermfg=238 ctermbg=238
hi Folded guibg=#384048 guifg=#a0a8b0 gui=none ctermbg=4 ctermfg=248
hi Title guifg=#f6f3e8 guibg=NONE gui=bold ctermfg=254 cterm=bold
hi Visual guifg=#faf4c6 guibg=#3c414c gui=none ctermfg=254 ctermbg=4
hi SpecialKey guifg=#808080 guibg=#343434 gui=none ctermfg=244 ctermbg=236
hi Type guifg=#2791a4 ctermfg=31
hi String guifg=#ebd467 ctermfg=186
hi Conditional guifg=#d78787 ctermfg=174
hi Function guifg=#7de12d ctermfg=112
hi Type guifg=00c0d7 ctermfg=38
"go stuff
hi goDeclType guifg=#d78787 ctermfg=174
hi goBuiltins guifg=#d78787 ctermfg=174
hi goStatement guifg=#d78787 ctermfg=174
hi goSignedInts guifg=#87d7d7 ctermfg=116
hi goUnsignedInts guifg=#87af87 ctermfg=108
hi goFloats guifg=#ffd7af ctermfg=223
hi goComplexes guifg=#9977cb ctermfg=139
" Syntax highlighting
hi Comment guifg=#3f3f3f gui=italic ctermfg=244
hi Comment guifg=#808080 ctermfg=102
hi Todo guifg=#ffffff ctermfg=231 ctermbg=none guibg=none
hi Boolean guifg=#b1d631 gui=none ctermfg=148
hi Identifier guifg=#b1d631 gui=none ctermfg=148
hi Statement guifg=#7e8aa2 gui=none ctermfg=103
hi Keyword guifg=#d78787 ctermfg=174
hi Repeat guifg=#d78787 ctermfg=174
hi Constant guifg=#ff9800 gui=none ctermfg=208
hi Number guifg=#87d7d7 ctermfg=116
hi Special guifg=#ff9800 gui=none ctermfg=208
hi PreProc guifg=#faf4c6 gui=none ctermfg=230
hi Todo guifg=#ff9f00 guibg=#202020 gui=none
" Code-specific colors
hi pythonImport guifg=#009000 gui=none ctermfg=255
hi pythonException guifg=#f00000 gui=none ctermfg=200
hi pythonOperator guifg=#7e8aa2 gui=none ctermfg=103
hi pythonBuiltinFunction guifg=#009000 gui=none ctermfg=200
hi pythonExClass guifg=#009000 gui=none ctermfg=200
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment