Created
August 5, 2015 00:56
-
-
Save magnunleno/1c4bb6f31654573d441b to your computer and use it in GitHub Desktop.
Brogrammer+ VIM Colorscheme
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
runtime colors/brogrammer.vim | |
let g:colors_name = "brogrammer+" | |
" Fix NonText (tab, CR and etc) | |
hi NonText ctermfg=22 ctermbg=234 cterm=NONE guifg=#30312a guibg=#1a1a1a gui=NONE | |
" Makes the Line Number color closer to the default BG | |
hi LineNr term=underline ctermfg=244 ctermbg=236 guifg=#838586 guibg=#232323 | |
" Makes the current line number highlight changes only the FG | |
hi CursorLineNr term=bold ctermfg=14 gui=bold guifg=Yellow guibg=#232323 | |
" Fix Ignore too invisible | |
hi Ignore ctermfg=241 guifg=#303030 | |
" Fix vertical split | |
hi VertSplit term=reverse ctermfg=241 ctermbg=234 gui=bold guifg=#303030 guibg=#232323 | |
" Fix GitGutter Column | |
hi SignColumn ctermfg=244 ctermbg=236 guifg=#838586 guibg=#232323 | |
hi GitGutterChangeDefault ctermfg=244 ctermbg=236 guifg=#bbbb00 guibg=#232323 | |
hi GitGutterAddDefault ctermfg=2 ctermbg=236 guifg=#009900 guibg=#232323 | |
hi GitGutterDeleteDefault ctermfg=1 ctermbg=236 guifg=#ff2222 guibg=#232323 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment