diff --git a/.bashrc b/.bashrc index 5128256..1800bee 100644 --- a/.bashrc +++ b/.bashrc @@ -10,7 +10,6 @@ if [[ $- != *i* ]] ; then return fi - ############################################################################### # Conda Setup ################################################################# ############################################################################### @@ -37,6 +36,10 @@ unset __conda_setup HISTSIZE=20000 HISTFILESIZE=30000 +# Add atuin +mkdir -p ~/.atuin/bin/ +export PATH="/home/tyler/.atuin/bin/:$PATH" + # add .cargo/bin to path export PATH="/home/tyler/.cargo/bin:$PATH" export PATH="/home/tyler/.local/bin:$PATH" @@ -199,3 +202,6 @@ export BUN_INSTALL="$HOME/.bun" export PATH="$BUN_INSTALL/bin:$PATH" eval "$(opam env)" export PATH="$HOME/Projects/bin:$PATH" + +. "$HOME/.atuin/bin/env" +[[ -f ~/.bash-preexec.sh ]] && source ~/.bash-preexec.sh