-
Notifications
You must be signed in to change notification settings - Fork 0
/
.zshrc
98 lines (73 loc) · 2.62 KB
/
.zshrc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
#!/usr/bin/env zsh
# Path to your oh-my-zsh configuration.
ZSH="$HOME"/.oh-my-zsh
# Set name of the theme to load.
# 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="my-arrow"
# Set to this to use case-sensitive completion
# CASE_SENSITIVE="true"
# Comment this out to disable bi-weekly auto-update checks
# DISABLE_AUTO_UPDATE="true"
# Uncomment to change how many often would you like to wait before auto-updates occur? (in days)
# export UPDATE_ZSH_DAYS=13
# Uncomment following line if you want to disable colors in ls
# DISABLE_LS_COLORS="true"
# Uncomment following line if you want to disable autosetting terminal title.
# DISABLE_AUTO_TITLE="true"
# Uncomment following line if you want red dots to be displayed while waiting for completion
# COMPLETION_WAITING_DOTS="true"
# Which plugins would you like to load? (plugins can be found in ~/.oh-my-zsh/plugins/*)
# Custom plugins may be added to ~/.oh-my-zsh/custom/plugins/
# Example format: plugins=(rails git textmate ruby lighthouse)
plugins=(git ruby gem brew autojump cake vagrant rails knife cabal node npm)
source ~/.aliases
## 実行したプロセスの消費時間が3秒以上かかったら
## 自動的に消費時間の統計情報を表示する。
REPORTTIME=3
## 全てのユーザのログイン・ログアウトを監視する。
watch="all"
## ログイン時にはすぐに表示する。
log
## ^Dでログアウトしないようにする。
setopt ignore_eof
RED=$'%{\e[0;31m%}'
GREEN=$'%{\e[0;32m%}'
YELLOW='%{\e[0;33m%}'
BLUE=$'%{\e[0;34m%}'
PINK=$'%{\e[0;35m%}'
CYAN=$'%{\e[0;36m%}'
GREY=$'%{\e[1;30m%}'
NORMAL=$'%{\e[0m%}'
# Customize to your needs...
export PATH=/usr/local/sbin:/usr/local/bin:/bin:/usr/sbin:/sbin:/usr/bin:/opt/X11/bin:$PATH
# for rbenv
export PATH=~/.rbenv/bin:$PATH
eval "$(rbenv init -)"
# for pyenv
export PYENV_ROOT="$HOME/.pyenv"
export PATH="$PYENV_ROOT/bin:$PATH"
eval "$(pyenv init -)"
# for cask
export PATH="$HOME/.cask/bin:$PATH"
fpath=($HOME/repo/zsh-completions $fpath)
# for stack or clojure
if [[ ! -e "$HOME"/.local/bin ]];then
mkdir "$HOME"/.local/bin
fi
export PATH=$HOME/.local/bin:$PATH
# for ats
export PATSHOME=$HOME/atshome/ATS2-Postiats-0.2.1
export PATH=${PATSHOME}/bin:${PATH}
export PATSHOMERELOC=$HOME/atshome/ATS2-Postiats-contrib-0.1.12
if [[ $(uname) = 'Darwin' ]];then
export PATH="$HOME/Library/Haskell/bin:$PATH"
# brew api token
if [ -f ~/private/.brew_api_token ];then
source ~/private/.homebrew_api_token
fi
fi
if [ -d "$HOME"/.composer/vendor/bin ]; then
export PATH="$HOME"/.composer/vendor/bin:${PATH}
fi