Skip to content

Instantly share code, notes, and snippets.

@mfe5003
Created September 26, 2018 19:01
Show Gist options
  • Save mfe5003/57ce7ed893bf8b8bf55230290798ec61 to your computer and use it in GitHub Desktop.
Save mfe5003/57ce7ed893bf8b8bf55230290798ec61 to your computer and use it in GitHub Desktop.
vim color scheme for servers, based on pablo (no blue!)
" local syntax file - set colors on a per-machine basis:
" vim: tw=0 ts=4 sw=4
" Vim color file
" Maintainer: mebert
" Last Change: 2018 Sept 26
hi clear
set background=dark
if exists("syntax_on")
syntax reset
endif
let g:colors_name = "pablo"
highlight Comment ctermfg=8 guifg=#808080
highlight Constant ctermfg=14 cterm=none guifg=#00ffff gui=none
highlight Identifier ctermfg=6 guifg=#00c0c0
highlight Statement ctermfg=3 cterm=bold guifg=#c0c000 gui=bold
highlight PreProc ctermfg=10 guifg=#00ffff
highlight Type ctermfg=41 guifg=#00c000
highlight Special ctermfg=LightBlue guifg=#00ffff
highlight Error ctermbg=9 guibg=#ff0000
highlight Todo ctermfg=4 ctermbg=3 guifg=#000080 guibg=#c0c000
highlight Directory ctermfg=2 guifg=#00c000
highlight StatusLine ctermfg=11 ctermbg=12 cterm=none guifg=#ffff00 guibg=#0000ff gui=none
highlight Normal guifg=#ffffff guibg=#000000
highlight Search ctermbg=3 guibg=#c0c000
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment