summaryrefslogtreecommitdiff
path: root/.bashrc
diff options
context:
space:
mode:
Diffstat (limited to '.bashrc')
-rw-r--r--.bashrc15
1 files changed, 6 insertions, 9 deletions
diff --git a/.bashrc b/.bashrc
index cd2b989..45cb305 100644
--- a/.bashrc
+++ b/.bashrc
@@ -3,20 +3,17 @@
# / __| / _' | |_ / _ \| _ \ / _' | _ \ / _ \
# | |__ / (_| | _| __/| |_) / (_| | |_) | __/
# \___|\___._/_| \___/|____/\___._/____/ \___/
-#
-# Add various paths
-export PATH="$PATH:usr/local/lib:$HOME/.cargo/bin"
+umask 77
-# Path for Android Development
-export ANDROID_HOME=$HOME/Android/Sdk
-export PATH=$PATH:$ANDROID_HOME/emulator
-export PATH=$PATH:$ANDROID_HOME/tools
-export PATH=$PATH:$ANDROID_HOME/tools/bin
-export PATH=$PATH:$ANDROID_HOME/platform-tools
+export TERM=xterm-kitty
export LC_ALL=en_US.UTF-8
+if [ -f "/etc/profile.d/rvm.sh" ]; then
+ source /etc/profile.d/rvm.sh
+fi
+
# If not running interactively, don't do anything
case $- in
*i*) ;;