15 lines
323 B
Plaintext
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
|
|
|