dotfiles/.bashrc

50 lines
849 B
Bash

#
# ~/.bashrc
#
# If not running interactively, don't do anything
[[ $- != *i* ]] && return
alias ls='ls --color=auto'
PS1='[\u@\h \W]\$ '
# vi bindings
set -o vi
# default editor
export EDITOR=nvim
export VISUAL=nvim
# for java applicatons
export _JAVA_AWT_WM_NONREPARENTING=1
# android SDK
export ANDROID_SDK_ROOT=/home/sheldonmlee/Library/Android/
export PATH="$ANDROID_SDK_ROOT/cmdline-tools/latest/bin:$PATH"
export PATH="$ANDROID_SDK_ROOT/platform-tools/:$PATH"
export JAVA_HOME=/usr/lib/jvm/java-8-openjdk
if grep "arch-laptop" /etc/hostname > /dev/null ; then
export IS_LAPTOP=1
fi
# include bash aliases
if [ -f ~/.bash_aliases ]
then
source ~/.bash_aliases
fi
# custom scripts
if [ -f ~/.custom_bash_scripts ]
then
source ~/.custom_bash_scripts
fi
# nnn bookmarks
if [ -f ~/.nnn_bookmarks ]
then
source ~/.nnn_bookmarks
fi