Skip to content

Commit

Permalink
update zsh terminal
Browse files Browse the repository at this point in the history
  • Loading branch information
doug committed Aug 30, 2014
1 parent 3675676 commit a343d10
Show file tree
Hide file tree
Showing 4 changed files with 40 additions and 15 deletions.
27 changes: 26 additions & 1 deletion themes/Lite.terminal
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,10 @@
dIABCBEaIy0yNztBSE5bYoKEhouWn6eqs8XIzQAAAAAAAAEBAAAAAAAAABkAAAAAAAAA
AAAAAAAAAADP
</data>
<key>Bell</key>
<false/>
<key>CursorBlink</key>
<true/>
<key>Font</key>
<data>
YnBsaXN0MDDUAQIDBAUGGBlYJHZlcnNpb25YJG9iamVjdHNZJGFyY2hpdmVyVCR0b3AS
Expand All @@ -44,8 +48,29 @@
<real>1.004032258064516</real>
<key>ProfileCurrentVersion</key>
<real>2.02</real>
<key>ShowDimensionsInTitle</key>
<false/>
<key>VisualBell</key>
<true/>
<key>WindowTitle</key>
<string></string>
<key>name</key>
<string>Doug Lite</string>
<string>Lite</string>
<key>noWarnProcesses</key>
<array>
<dict>
<key>ProcessName</key>
<string>screen</string>
</dict>
<dict>
<key>ProcessName</key>
<string>tmux</string>
</dict>
<dict>
<key>ProcessName</key>
<string>ssh</string>
</dict>
</array>
<key>type</key>
<string>Window Settings</string>
</dict>
Expand Down
9 changes: 5 additions & 4 deletions themes/Monokai.terminal
Original file line number Diff line number Diff line change
Expand Up @@ -117,10 +117,11 @@
<key>CursorColor</key>
<data>
YnBsaXN0MDDUAQIDBAUGFRZYJHZlcnNpb25YJG9iamVjdHNZJGFyY2hpdmVyVCR0b3AS
AAGGoKMHCA9VJG51bGzTCQoLDA0OVU5TUkdCXE5TQ29sb3JTcGFjZVYkY2xhc3NGMSAx
IDEAEAGAAtIQERITWiRjbGFzc25hbWVYJGNsYXNzZXNXTlNDb2xvcqISFFhOU09iamVj
dF8QD05TS2V5ZWRBcmNoaXZlctEXGFRyb290gAEIERojLTI3O0FITltiaWttcn2GjpGa
rK+0AAAAAAAAAQEAAAAAAAAAGQAAAAAAAAAAAAAAAAAAALY=
AAGGoKMHCA9VJG51bGzTCQoLDA0OVU5TUkdCXE5TQ29sb3JTcGFjZVYkY2xhc3NPECcw
LjQ5Nzk0MDcyNjkgMC40OTc5NDA3MjY5IDAuNDk3OTQwNzI2OQAQAYAC0hAREhNaJGNs
YXNzbmFtZVgkY2xhc3Nlc1dOU0NvbG9yohIUWE5TT2JqZWN0XxAPTlNLZXllZEFyY2hp
dmVy0RcYVHJvb3SAAQgRGiMtMjc7QUhOW2KMjpCVoKmxtL3P0tcAAAAAAAABAQAAAAAA
AAAZAAAAAAAAAAAAAAAAAAAA2Q==
</data>
<key>CursorType</key>
<integer>0</integer>
Expand Down
7 changes: 3 additions & 4 deletions zshenv
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ if [[ "$OSTYPE" == darwin* ]]; then
export GOARCH=amd64
export GOOS=darwin
# Ruby
export PATH=$PATH:$HOME/.rvm/bin
PATH=$PATH:$HOME/.rvm/bin
# pkg-config
export PKG_CONFIG_PATH=$PKG_CONFIG_PATH:$HOMEBREW_PREFIX/lib:$HOMEBREW_PREFIX/include
# compile path
Expand All @@ -28,16 +28,15 @@ if [[ "$OSTYPE" == darwin* ]]; then
# python
PATH=$HOMEBREW_PREFIX/share/python:$PATH
# ruby
PATH=$HOMEBREW_PREFIX/opt/ruby/bin:$PATH
export PATH=$HOMEBREW_PREFIX/opt/ruby/bin:$PATH
elif [[ "$OSTYPE" == linux* ]]; then
# Go
export GOARCH=amd64
export GOOS=linux
export CGO_LDFLAGS="-Wl,-rpath,/usr/local/lib"
# Path
PATH=/opt/local/bin:$PATH
export PATH=/opt/local/bin:$PATH
fi
export $PATH

# Local overrides
if [[ -s $HOME/.zshenv.local ]]; then
Expand Down
12 changes: 6 additions & 6 deletions zshrc
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ export ZSH=$HOME/.oh-my-zsh
# Look in ~/.oh-my-zsh/themes/
# Optionally, if you set this to "random", it'll load a random theme each
# time that oh-my-zsh is loaded.
ZSH_THEME="skaro"
ZSH_THEME="tjkirch"

# Uncomment the following line to use case-sensitive completion.
# CASE_SENSITIVE="true"
Expand All @@ -26,12 +26,12 @@ ZSH_THEME="skaro"
# ENABLE_CORRECTION="true"

# Uncomment the following line to display red dots whilst waiting for completion.
# COMPLETION_WAITING_DOTS="true"
COMPLETION_WAITING_DOTS="true"

# Uncomment the following line if you want to disable marking untracked files
# under VCS as dirty. This makes repository status check for large repositories
# much, much faster.
# DISABLE_UNTRACKED_FILES_DIRTY="true"
DISABLE_UNTRACKED_FILES_DIRTY="true"

# Uncomment the following line if you want to change the command execution time
# stamp shown in the history command output.
Expand Down Expand Up @@ -62,10 +62,10 @@ PATH=$HOME/bin:$PATH
PATH=$HOME/.go/bin:$HOME/go/bin:$PATH

# Docker
if (( $+commands[boot2docker] )); then
export DOCKER_HOST=tcp://:2375
# on Linux we need the actual IP
if [[ $OSTYPE == linux* ]] && (( $+commands[boot2docker] )); then
export DOCKER_HOST="tcp://$(boot2docker ip 2> /dev/null):2375"
else
export DOCKER_HOST=tcp://:2375
fi


Expand Down

0 comments on commit a343d10

Please sign in to comment.