dotfiles/bashrc

29 lines
621 B
Bash
Raw Normal View History

2021-08-11 17:18:09 -04:00
# __ Valerie's __
# / /_ ____ ______/ /_ __________
# / __ \/ __ `/ ___/ __ \/ ___/ ___/
# _ / /_/ / /_/ (__ ) / / / / / /__
# (_)_.___/\__,_/____/_/ /_/_/ \___/
# ~/.bashrc
# If not running interactively, don't do anything
[[ $- != *i* ]] && return
2022-05-22 15:32:36 -04:00
alias hx='helix'
2021-08-11 17:18:09 -04:00
alias ls='ls --color=auto'
2022-05-22 15:32:36 -04:00
alias imgcat="wezterm imgcat --height 50%"
alias motd="rust-motd"
2021-08-11 17:18:09 -04:00
2022-05-22 15:32:36 -04:00
export EDITOR=helix
2021-08-11 17:18:09 -04:00
eval "$(starship init bash)"
eval "$(thefuck --alias)"
source /usr/lib/goto/goto.sh
2022-05-22 15:32:36 -04:00
source /usr/lib/codecat/codecat.sh
export PS1="$(starship prompt)"
2022-05-22 15:32:36 -04:00
if [[ $SHLVL -le 3 ]]; then
motd
fi