This commit is contained in:
Benjamin Maidel 2023-09-21 15:16:00 +02:00
parent 8708d88df0
commit c9fbacd133

View file

@ -2,7 +2,7 @@
# Adds $1 to ~/.zshrc if not already present
function _add_to_config {
if ! grep "$1" ~/.zshrv > /dev/null; then
if ! grep "$1" ~/.zshrc > /dev/null; then
echo "$1" >> ~/.zshrc
fi
}