adb200c764
command.
56 lines
987 B
Bash
56 lines
987 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
|
|
|
|
# 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"
|
|
|
|
# custom scripts and programs
|
|
export PATH="$HOME/.local/bin:$PATH"
|
|
export PATH="$HOME/.config/wm_scripts:$PATH"
|
|
|
|
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
|
|
|