Files
dotfiles/.config/zsh/.zshrc

22 lines
438 B
Bash

if [[ -o interactive ]]; then
if [[ -z "$TMUX" ]]; then
tmux new-session -A -s 0
fi
fi
bindkey -e
source $ZDOTDIR/setup-history.zsh
source $ZDOTDIR/prompts/simple-two-line.zsh
source $ZDOTDIR/functions.zsh
source $ZDOTDIR/plugins.zsh
source $ZDOTDIR/theme.zsh
if [[ $(uname) == "Darwin" ]]; then
eval "$(/opt/homebrew/bin/brew shellenv)"
fi
eval "$(atuin init zsh --disable-up-arrow)"
eval "$(starship init zsh)"