-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprofile
More file actions
30 lines (24 loc) · 818 Bytes
/
Copy pathprofile
File metadata and controls
30 lines (24 loc) · 818 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
#vim:ft=bash
if [ -e /usr/share/terminfo/x/xterm-256color ]; then
export TERM='xterm-256color'
else
export TERM='xterm-color'
fi
export PATH="$HOME/bin:$PATH"
if [ -d $HOME/lib/node-v4.2.1-linux-x86/bin ]; then
export PATH="$HOME/lib/node-v4.2.1-linux-x86/bin:$PATH"
fi
if [[ `uname` == 'Linux' ]]
then
export SSLKEYLOGFILE='/usr/local/google/home/devrajm/.sslkey.log'
export STUDIO_VM_OPTIONS='/usr/local/google/home/devrajm/.studio64.vmoptions'
fi
export IBUS_ENABLE_SYNC_MODE=1
. "$HOME/.cargo/env"
export CARGO_INCREMENTAL=0
# Only use sccache when it's actually installed; otherwise cargo fails because
# RUSTC_WRAPPER points at a missing binary (e.g. in codespaces).
if command -v sccache >/dev/null 2>&1; then
export RUSTC_WRAPPER=sccache
export SCCACHE_CACHE_SIZE=20G
fi