Introducing atuin and mosh.

This commit is contained in:
Bartek Stalewski 2024-10-25 23:02:02 +02:00
parent 3c6eab7ef9
commit 1a4f241593
No known key found for this signature in database
3 changed files with 241 additions and 1 deletions

View file

@ -65,6 +65,10 @@ if [[ -f "${HOME}/.note" ]]; then
echo
fi
if [[ $(command -v atuin) ]]; then
eval "$(atuin init zsh)"
fi
# local settings
if [[ -f "${HOME}/.local/config/zsh" ]]; then
source "${HOME}/.local/config/zsh"

View file

@ -39,6 +39,10 @@ if [[ $(command -v fd) ]]; then
fi
fi
if [[ $(command -v mosh) ]]; then
alias ssh=mosh
fi
if [ $(command -v nvim) ]; then
export EDITOR=nvim
export MANPAGER="nvim +Man!"
@ -75,4 +79,4 @@ function upgrade() {
rm -rf ~/Library/Caches/Homebrew/*
fi
oh-my-posh upgrade
}
}