dotfiles/.bashrc

40 lines
646 B
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
# 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
# source custom functions.
for f in ~/.config/scripts/functions/*; do source "$f"; done
if [ -f $WDIR_PATH ]
then
wdir="$(cat $WDIR_PATH)"
echo "Working directory from $WDIR_PATH"
cd "$wdir"
fi