Add Color file to Repo

Colorblindness :(
This commit is contained in:
2015-10-01 09:50:17 -05:00
parent 596d7ab66a
commit 3a14affab0
2 changed files with 61 additions and 1 deletions

View File

@@ -12,7 +12,10 @@ set hlsearch
set backspace=indent,eol,start
set nocompatible
set nobackup
colorscheme zellner
colorscheme zellnerbrb
hi ErrorMsg term=standout cterm=bold ctermfg=9 ctermbg=9
hi WarningMsg term=standout cterm=bold ctermfg=1 guifg=Black
syntax on
filetype plugin on
filetype indent off
@@ -67,3 +70,6 @@ vmap v <Plug>(expand_region_expand)
vmap <C-v> <Plug>(expand_region_shrink)
set rtp+=$GOPATH/src/github.com/golang/lint/misc/vim
autocmd BufWritePost,FileWritePost *.go execute 'Lint' | cwindow
" Use `goimports` instead of `gofmt`
let g:go_fmt_command = "goimports"