Fix atuin

This commit is contained in:
Tyler 2025-09-23 20:42:11 -04:00
parent 5c071a4fdf
commit 5c40a6a95b

View File

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