blob: db83c42a9f41fe514cff1532b2880efbed2d47ef (
plain)
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
|
# Path to your oh-my-zsh configuration.
export ZSH=$HOME/.oh-my-zsh
# Look in ~/.oh-my-zsh/themes/
export ZSH_THEME="gallifrey"
# Comment this out to disable weekly auto-update checks
export DISABLE_AUTO_UPDATE="true"
# export DISABLE_LS_COLORS="true"
plugins=(git ssh-agent)
source $ZSH/oh-my-zsh.sh
test -e $HOME/.aliases && source $HOME/.aliases
# Customize to your needs...
export PATH=$PATH:/sbin:/usr/sbin:/krebs/bin:$HOME/bin
HISTFILE=~/.histfile
HISTSIZE=900001
SAVEHIST=900001
export EDITOR=vim
export JAVA_HOME=/opt/java/jre
GREP_COLOR="1;33"
alias grep='grep --color=auto'
export MANPATH=$MANPATH:$HOME/man
if [ -f "$HOME/.dircolors" ] ; then
eval `dircolors -b "$HOME/.dircolors"`
export LS_COLORS
fi
which fortune >/dev/null && fortune -a
which task >/dev/null && task
echo "--"
test -r ~/TODO && cat ~/TODO
test -r ~/Dropbox/shared_shell && source ~/Dropbox/shared_shell
setopt menu_complete
unsetopt correct_all
|