Skip to content

Commit

Permalink
add color schemes
Browse files Browse the repository at this point in the history
  • Loading branch information
johnryan-wf committed Feb 12, 2015
1 parent 8e1fe53 commit b94b9ed
Show file tree
Hide file tree
Showing 93 changed files with 9,209 additions and 10 deletions.
6 changes: 6 additions & 0 deletions .gitmodules
Expand Up @@ -16,3 +16,9 @@
[submodule "vim/.vim/bundle/vim-colors-solarized"]
path = vim/.vim/bundle/vim-colors-solarized
url = git://github.com/altercation/vim-colors-solarized.git
[submodule "vim/.vim/bundle/vim-dart"]
path = vim/.vim/bundle/vim-dart
url = git@github.com:dart-lang/dart-vim-plugin.git
[submodule "vim/.vim/bundle/vim-elm"]
path = vim/.vim/bundle/vim-elm
url = git@github.com:lambdatoast/elm.vim.git
61 changes: 56 additions & 5 deletions .profile
Expand Up @@ -5,21 +5,19 @@ PS1="λ "
set -o vi

# grep - display line numbers
alias grep="grep -n --color=always"
# alias grep="grep -n --color=always"

# colors in terminal
alias ls="ls -G"

alias ll="ls -la"

# use vim for commits, etc
export EDITOR="vim"

# setup go workspace
export GOROOT=/usr/local/Cellar/go/1.2.2/libexec
export GOPATH=$HOME/src/go
export GOROOT=/usr/local/Cellar/go/1.4.1/libexec/
export GOPATH=$HOME/go
export PATH=$PATH:$GOPATH/bin
export PATH=$PATH:$GOROOT/bin
export GOMAXPROCS=8

# enable/disable hidden files
Expand All @@ -31,3 +29,56 @@ export PATH=$PATH:~/.cabal/bin

# put local bin ahead of system bin
export PATH=/usr/local/bin:$PATH

# Initialize rbenv
if which rbenv > /dev/null; then eval "$(rbenv init -)"; fi

# dart path
export PATH=$PATH:~/.pub-cache/bin

# boot2docker
export DOCKER_HOST=tcp://192.168.59.103:2376
export DOCKER_CERT_PATH=/Users/johnryan/.boot2docker/certs/boot2docker-vm
export DOCKER_TLS_VERIFY=1


# The next line updates PATH for the Google Cloud SDK.
source '/Users/johnryan/google-cloud-sdk/path.bash.inc'

# The next line enables bash completion for gcloud.
source '/Users/johnryan/google-cloud-sdk/completion.bash.inc'

# virtualenvwrapper
# Don't let Mac python (in /usr/bin) supercede brew's python
# (/usr/local/bin)
export VIRTUALENVWRAPPER_PYTHON=/Library/Frameworks/Python.framework/Versions/2.7/bin/python
# Sets the working directory for all virtualenvs
export WORKON_HOME=$HOME/.virtualenvs

# Sources the virtualenvwrapper so all the commands are availabe in the
# shell
source /Library/Frameworks/Python.framework/Versions/2.7/bin/virtualenvwrapper.sh

# for bigsky
export MAVEN_OPTS="-Xmx4096m -Xss1024m -XX:MaxPermSize=128m"
export ANT_OPTS=-Xmx1g

# Ruby Gems
export RUBYPATH=/Users/johnryan/.rbenv/versions/1.9.3-p194/bin
export PATH=$PATH:$RUBYPATH

# add git completion
source /usr/local/bin/git-completion.bash

# Setting PATH for Python 2.7
# The orginal version is saved in .profile.pysave
PATH="/Library/Frameworks/Python.framework/Versions/2.7/bin:${PATH}"
export PATH

# Setting PATH for Python 2.7
# The orginal version is saved in .profile.pysave
PATH="/Library/Frameworks/Python.framework/Versions/2.7/bin:${PATH}"
export PATH

export CLICOLOR=1

5 changes: 2 additions & 3 deletions vim/.gvimrc
@@ -1,4 +1,3 @@
if has("gui_running")
set guioptions=egmt
endif
set guioptions=egmt
colorscheme peacock

105 changes: 105 additions & 0 deletions vim/.vim/bundle/daylereese-colorschemes/colors/arstotzka.vim
@@ -0,0 +1,105 @@
" ======================================================================
" Arstotzka
" ======================================================================
" A Sublime Text 2 / Textmate theme.
" Copyright (c) 2014 Dayle Rees.
" Released under the MIT License <http://opensource.org/licenses/MIT>
" ======================================================================
" Find more themes at : https://github.com/daylerees/colour-schemes
" ======================================================================

set background=dark
hi clear
syntax reset

" Colors for the User Interface.

hi Cursor guibg=#cc4455 guifg=white ctermbg=4 ctermfg=15
hi link CursorIM Cursor
hi Normal guibg=#211f1e guifg=#EDEBE6 gui=none ctermbg=0 ctermfg=15
hi NonText guibg=bg guifg=#EDEBE6 ctermbg=8 ctermfg=14
hi Visual guibg=#557799 guifg=white gui=none ctermbg=9 ctermfg=15

hi Linenr guibg=bg guifg=#aaaaaa gui=none ctermbg=bg ctermfg=7

hi Directory guibg=bg guifg=#337700 gui=none ctermbg=bg ctermfg=10

hi IncSearch guibg=#0066cc guifg=white gui=none ctermbg=1 ctermfg=15
hi link Seach IncSearch

hi SpecialKey guibg=bg guifg=fg gui=none ctermbg=bg ctermfg=fg
hi Titled guibg=bg guifg=fg gui=none ctermbg=bg ctermfg=fg

hi ErrorMsg guibg=bg guifg=#ff0000 ctermbg=bg ctermfg=12
hi ModeMsg guibg=bg guifg=#ffeecc gui=none ctermbg=bg ctermfg=14
hi link MoreMsg ModeMsg
hi Question guibg=bg guifg=#A2A797 ctermbg=bg ctermfg=10
hi link WarningMsg ErrorMsg

hi StatusLine guibg=#ffeecc guifg=black ctermbg=14 ctermfg=0
hi StatusLineNC guibg=#cc4455 guifg=white gui=none ctermbg=4 ctermfg=11
hi VertSplit guibg=#cc4455 guifg=white gui=none ctermbg=4 ctermfg=11

hi DiffAdd guibg=#446688 guifg=fg gui=none ctermbg=1 ctermfg=fg
hi DiffChange guibg=#558855 guifg=fg gui=none ctermbg=2 ctermfg=fg
hi DiffDelete guibg=#884444 guifg=fg gui=none ctermbg=4 ctermfg=fg
hi DiffText guibg=#884444 guifg=fg ctermbg=4 ctermfg=fg

" Colors for Syntax Highlighting.

hi Comment guibg=bg guifg=#3f3a36 gui=none ctermbg=8 ctermfg=7

hi Constant guibg=bg guifg=white ctermbg=8 ctermfg=15
hi String guibg=bg guifg=#a5e3d0 ctermbg=bg ctermfg=14
hi Character guibg=bg guifg=#516B6B ctermbg=bg ctermfg=14
hi Number guibg=bg guifg=#a5e3d0 ctermbg=1 ctermfg=15
hi Boolean guibg=bg guifg=#a5e3d0 gui=none ctermbg=1 ctermfg=15
hi Float guibg=bg guifg=#a5e3d0 ctermbg=1 ctermfg=15

hi Identifier guibg=bg guifg=#EDEBE6 ctermbg=bg ctermfg=12
hi Function guibg=bg guifg=#516B6B ctermbg=bg ctermfg=12
hi Statement guibg=bg guifg=#516B6B ctermbg=bg ctermfg=14

hi Conditional guibg=bg guifg=#A2A797 ctermbg=bg ctermfg=12
hi Repeat guibg=bg guifg=#A2A797 ctermbg=4 ctermfg=14
hi Label guibg=bg guifg=#ffccff ctermbg=bg ctermfg=13
hi Operator guibg=bg guifg=#A2A797 ctermbg=6 ctermfg=15
hi Keyword guibg=bg guifg=#A2A797 ctermbg=bg ctermfg=10
hi Exception guibg=bg guifg=#516B6B ctermbg=bg ctermfg=10

hi PreProc guibg=bg guifg=#ffcc99 ctermbg=4 ctermfg=14
hi Include guibg=bg guifg=#A2A797 ctermbg=bg ctermfg=10
hi link Define Include
hi link Macro Include
hi link PreCondit Include

hi Type guibg=bg guifg=#A2A797 ctermbg=bg ctermfg=12
hi StorageClass guibg=bg guifg=#516B6B ctermbg=bg ctermfg=10
hi Structure guibg=bg guifg=#EDEBE6 ctermbg=bg ctermfg=10
hi Typedef guibg=bg guifg=#A2A797 ctermbg=bg ctermfg=10

hi Special guibg=bg guifg=#bbddff ctermbg=1 ctermfg=15
hi SpecialChar guibg=bg guifg=#bbddff ctermbg=1 ctermfg=15
hi Tag guibg=bg guifg=#bbddff ctermbg=1 ctermfg=15
hi Delimiter guibg=bg guifg=fg ctermbg=1 ctermfg=fg
hi SpecialComment guibg=#334455 guifg=#605852 ctermbg=1 ctermfg=15
hi Debug guibg=bg guifg=#ff9999 gui=none ctermbg=8 ctermfg=12

hi Underlined guibg=bg guifg=#99ccff gui=underline ctermbg=bg ctermfg=9 cterm=underline

hi Title guibg=bg guifg=#EDEBE6 ctermbg=1 ctermfg=15
hi Ignore guibg=bg guifg=#cccccc ctermbg=bg ctermfg=8
hi Error guibg=#ff0000 guifg=white ctermbg=12 ctermfg=15
hi Todo guibg=#556677 guifg=#ff0000 ctermbg=1 ctermfg=12

hi htmlH2 guibg=bg guifg=fg ctermbg=8 ctermfg=fg
hi link htmlH3 htmlH2
hi link htmlH4 htmlH3
hi link htmlH5 htmlH4
hi link htmlH6 htmlH5

" And finally.

let g:colors_name = "Arstotzka"
let colors_name = "Arstotzka"

105 changes: 105 additions & 0 deletions vim/.vim/bundle/daylereese-colorschemes/colors/azure.vim
@@ -0,0 +1,105 @@
" ======================================================================
" Azure
" ======================================================================
" A Sublime Text 2 / Textmate theme.
" Copyright (c) 2014 Dayle Rees.
" Released under the MIT License <http://opensource.org/licenses/MIT>
" ======================================================================
" Find more themes at : https://github.com/daylerees/colour-schemes
" ======================================================================

set background=dark
hi clear
syntax reset

" Colors for the User Interface.

hi Cursor guibg=#cc4455 guifg=white ctermbg=4 ctermfg=15
hi link CursorIM Cursor
hi Normal guibg=#181D26 guifg=#ffffff gui=none ctermbg=0 ctermfg=15
hi NonText guibg=bg guifg=#ffffff ctermbg=8 ctermfg=14
hi Visual guibg=#557799 guifg=white gui=none ctermbg=9 ctermfg=15

hi Linenr guibg=bg guifg=#aaaaaa gui=none ctermbg=bg ctermfg=7

hi Directory guibg=bg guifg=#337700 gui=none ctermbg=bg ctermfg=10

hi IncSearch guibg=#0066cc guifg=white gui=none ctermbg=1 ctermfg=15
hi link Seach IncSearch

hi SpecialKey guibg=bg guifg=fg gui=none ctermbg=bg ctermfg=fg
hi Titled guibg=bg guifg=fg gui=none ctermbg=bg ctermfg=fg

hi ErrorMsg guibg=bg guifg=#ff0000 ctermbg=bg ctermfg=12
hi ModeMsg guibg=bg guifg=#ffeecc gui=none ctermbg=bg ctermfg=14
hi link MoreMsg ModeMsg
hi Question guibg=bg guifg=#6AB0A3 ctermbg=bg ctermfg=10
hi link WarningMsg ErrorMsg

hi StatusLine guibg=#ffeecc guifg=black ctermbg=14 ctermfg=0
hi StatusLineNC guibg=#cc4455 guifg=white gui=none ctermbg=4 ctermfg=11
hi VertSplit guibg=#cc4455 guifg=white gui=none ctermbg=4 ctermfg=11

hi DiffAdd guibg=#446688 guifg=fg gui=none ctermbg=1 ctermfg=fg
hi DiffChange guibg=#558855 guifg=fg gui=none ctermbg=2 ctermfg=fg
hi DiffDelete guibg=#884444 guifg=fg gui=none ctermbg=4 ctermfg=fg
hi DiffText guibg=#884444 guifg=fg ctermbg=4 ctermfg=fg

" Colors for Syntax Highlighting.

hi Comment guibg=bg guifg=#414d62 gui=none ctermbg=8 ctermfg=7

hi Constant guibg=bg guifg=white ctermbg=8 ctermfg=15
hi String guibg=bg guifg=#64aeb3 ctermbg=bg ctermfg=14
hi Character guibg=bg guifg=#52708b ctermbg=bg ctermfg=14
hi Number guibg=bg guifg=#64aeb3 ctermbg=1 ctermfg=15
hi Boolean guibg=bg guifg=#64aeb3 gui=none ctermbg=1 ctermfg=15
hi Float guibg=bg guifg=#64aeb3 ctermbg=1 ctermfg=15

hi Identifier guibg=bg guifg=#ffffff ctermbg=bg ctermfg=12
hi Function guibg=bg guifg=#52708b ctermbg=bg ctermfg=12
hi Statement guibg=bg guifg=#52708b ctermbg=bg ctermfg=14

hi Conditional guibg=bg guifg=#508aaa ctermbg=bg ctermfg=12
hi Repeat guibg=bg guifg=#508aaa ctermbg=4 ctermfg=14
hi Label guibg=bg guifg=#ffccff ctermbg=bg ctermfg=13
hi Operator guibg=bg guifg=#508aaa ctermbg=6 ctermfg=15
hi Keyword guibg=bg guifg=#508aaa ctermbg=bg ctermfg=10
hi Exception guibg=bg guifg=#52708b ctermbg=bg ctermfg=10

hi PreProc guibg=bg guifg=#ffcc99 ctermbg=4 ctermfg=14
hi Include guibg=bg guifg=#6AB0A3 ctermbg=bg ctermfg=10
hi link Define Include
hi link Macro Include
hi link PreCondit Include

hi Type guibg=bg guifg=#6AB0A3 ctermbg=bg ctermfg=12
hi StorageClass guibg=bg guifg=#52708b ctermbg=bg ctermfg=10
hi Structure guibg=bg guifg=#ffffff ctermbg=bg ctermfg=10
hi Typedef guibg=bg guifg=#6AB0A3 ctermbg=bg ctermfg=10

hi Special guibg=bg guifg=#bbddff ctermbg=1 ctermfg=15
hi SpecialChar guibg=bg guifg=#bbddff ctermbg=1 ctermfg=15
hi Tag guibg=bg guifg=#bbddff ctermbg=1 ctermfg=15
hi Delimiter guibg=bg guifg=fg ctermbg=1 ctermfg=fg
hi SpecialComment guibg=#334455 guifg=#5c6b86 ctermbg=1 ctermfg=15
hi Debug guibg=bg guifg=#ff9999 gui=none ctermbg=8 ctermfg=12

hi Underlined guibg=bg guifg=#99ccff gui=underline ctermbg=bg ctermfg=9 cterm=underline

hi Title guibg=bg guifg=#ffffff ctermbg=1 ctermfg=15
hi Ignore guibg=bg guifg=#cccccc ctermbg=bg ctermfg=8
hi Error guibg=#ff0000 guifg=white ctermbg=12 ctermfg=15
hi Todo guibg=#556677 guifg=#ff0000 ctermbg=1 ctermfg=12

hi htmlH2 guibg=bg guifg=fg ctermbg=8 ctermfg=fg
hi link htmlH3 htmlH2
hi link htmlH4 htmlH3
hi link htmlH5 htmlH4
hi link htmlH6 htmlH5

" And finally.

let g:colors_name = "Azure"
let colors_name = "Azure"

0 comments on commit b94b9ed

Please sign in to comment.