From 5c40a6a95bb9563d2510cd30572262c0f322c79f Mon Sep 17 00:00:00 2001 From: Tyler Perkins Date: Tue, 23 Sep 2025 20:42:11 -0400 Subject: [PATCH] Fix atuin --- .bashrc | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) 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