# # ~/.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 # doas bash completion complete -cf doas # default editor export EDITOR=nvim export VISUAL=nvim export TERMINAL=alacritty # 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" if grep "arch-laptop" /etc/hostname &> /dev/null ; then export IS_LAPTOP=1 fi # Path to store working directory export WDIR_PATH="/tmp/$(id -u).wdir" # 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 if [ -f $WDIR_PATH ] then wdir="$(cat $WDIR_PATH)" echo "Working directory from $WDIR_PATH" cd "$wdir" fi