dotfiles/.bashrc

61 lines
1.0 KiB
Bash
Raw Normal View History

2020-06-25 05:48:14 +08:00
#
# ~/.bashrc
#
# If not running interactively, don't do anything
[[ $- != *i* ]] && return
2020-06-25 05:48:14 +08:00
alias ls='ls --color=auto'
#PS1='[\u@\h \W]\$ '
2020-06-25 05:48:14 +08:00
2020-09-19 00:18:32 +08:00
# vi bindings
set -o vi
# doas bash completion
complete -cf doas
# default editor
2021-09-13 14:12:58 +08:00
export EDITOR=nvim
export VISUAL=nvim
2022-02-27 20:33:26 +08:00
export TERMINAL=alacritty
2020-09-19 00:18:32 +08:00
# for java applicatons
export _JAVA_AWT_WM_NONREPARENTING=1
2021-09-07 18:18:02 +08:00
# android SDK
2021-12-28 21:38:34 +08:00
#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"
2021-09-07 18:18:02 +08:00
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"
2020-09-19 00:18:32 +08:00
# include bash aliases
if [ -f ~/.bash_aliases ]
then
source ~/.bash_aliases
fi
2020-09-19 00:18:32 +08:00
# custom scripts
if [ -f ~/.custom_bash_scripts ]
then
source ~/.custom_bash_scripts
fi
2020-09-19 00:18:32 +08:00
# 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