dotfiles/config/shared/zsh_root
2025-10-20 16:45:29 +03:00

15 lines
323 B
Plaintext

export EDITOR="nvim"
export VISUAL="nvim"
export PATH="$PATH:/home/tomas/.local/bin"
eval "$(dircolors)"
export LS_COLORS="${LS_COLORS}:ln=1;33:"
if [ -f "$HOME/.config/zsh/zshrc" ]; then
source "$HOME/.config/zsh/zshrc"
else
echo "Warning: ~/.config/zsh/zshrc not found, skipping custom Zsh configuration."
fi