9 lines
216 B
Plaintext
9 lines
216 B
Plaintext
export EDITOR="nvim"
|
|
export VISUAL="nvim"
|
|
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
|
|
|