dotfiles/.bashrc

55 lines
990 B
Bash
Raw Normal View History

2020-06-25 05:48:14 +08:00
#
# ~/.bashrc
#
# If not running interactively, don't do anything
2022-02-27 20:33:26 +08:00
#[[ $- != *i* ]] && return
2020-06-25 05:48:14 +08:00
alias ls='ls --color=auto'
PS1='[\u@\h \W]\$ '
2020-09-19 00:18:32 +08:00
# vi bindings
set -o vi
# 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
2021-12-28 20:26:25 +08:00
# custom scripts and programs
2021-12-28 21:38:34 +08:00
export PATH="$HOME/.local/bin:$PATH"
2021-12-28 21:41:48 +08:00
export PATH="$HOME/.config/wm_scripts:$PATH"
2021-12-28 20:26:25 +08:00
2021-09-07 18:18:02 +08:00
export JAVA_HOME=/usr/lib/jvm/java-8-openjdk
if grep "arch-laptop" /etc/hostname > /dev/null ; then
export IS_LAPTOP=1
fi
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