From ba0d6b1b8b6c3bf2cfa3a6a09f23379afb2eac9e Mon Sep 17 00:00:00 2001 From: Michael Yockey Date: Thu, 13 Feb 2025 10:04:08 -0500 Subject: [PATCH] zsh: Use atuin --- dependencies/homebrew.txt | 1 + zsh/dot-zshrc | 4 ++++ 2 files changed, 5 insertions(+) diff --git a/dependencies/homebrew.txt b/dependencies/homebrew.txt index 1ecbec8..aedebec 100644 --- a/dependencies/homebrew.txt +++ b/dependencies/homebrew.txt @@ -1,3 +1,4 @@ +atuin direnv fastfetch fd diff --git a/zsh/dot-zshrc b/zsh/dot-zshrc index 0d3c46d..c4caef0 100644 --- a/zsh/dot-zshrc +++ b/zsh/dot-zshrc @@ -14,8 +14,12 @@ export PYENV_ROOT="$HOME/.pyenv" [[ -d $PYENV_ROOT/bin ]] && export PATH="$PYENV_ROOT/bin:$PATH" eval "$(pyenv init -)" +# ZOxide, cd alternative eval "$(zoxide init --cmd cd zsh)" +# atuin, shell command stats +eval "$(atuin init zsh)" + if type brew &>/dev/null; then FPATH=$(brew --prefix)/share/zsh/site-functions:$FPATH export PATH="/usr/local/sbin:$PATH"