Skip to content

Instantly share code, notes, and snippets.

@AdamGagorik
Created October 25, 2023 15:02
Show Gist options
  • Save AdamGagorik/bbd45f03cad8442ac95cb5220afdbbe9 to your computer and use it in GitHub Desktop.
Save AdamGagorik/bbd45f03cad8442ac95cb5220afdbbe9 to your computer and use it in GitHub Desktop.
Helper function for editing zshrc
#!/usr/bin/env bash
function zcon() {
time_0=`date -r ~/.zshrc`
nvim ~/.zshrc
time_1=`date -r ~/.zshrc`
echo $time_0
echo $time_1
if [ "$time_0" != "$time_1" ]; then
echo "changed!"
exec zsh
fi
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment