-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env
More file actions
34 lines (30 loc) · 682 Bytes
/
.env
File metadata and controls
34 lines (30 loc) · 682 Bytes
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
# General Shell Environment
# author: Nikhil Murthy (nikhil.murthy@gmail.com)
# created 17 June 2009
# History
HISTSIZE=2000
if [ "`whoami`" = "root" ]; then
HISTFILE=/root/.zsh_history
else
HISTFILE=~/.zsh_history
fi
SAVEHIST=2000
export HISTSIZE HISTFILE SAVEHIST
# Editor
export EDITOR=vim
# Path
if [ "$(uname)" = "Linux" ]; then
export BROWSER="firefox"
fi
LC_ALL='en_US.UTF-8'
LANG='en_US.UTF-8'
LC_CTYPE=C
DISPLAY=:0
MUTT_EDITOR=vim
HOSTNAME="`hostname`"
TZ="America/Los_Angeles"
export GREPOPTIONS="-E --color"
export PATH="$PATH:$HOME/bin"
export RELTOOLS_CHANNEL=reltools_alpha
export MAKEOPTS="-j5"
export NODE_PATH=/usr/local/lib/node_modules:$NODE_PATH