Skip to content

Instantly share code, notes, and snippets.

@schappim
Created January 4, 2025 01:38
Show Gist options
  • Save schappim/2d0a3e0289c70b2e3ed20eccb5b04ad7 to your computer and use it in GitHub Desktop.
Save schappim/2d0a3e0289c70b2e3ed20eccb5b04ad7 to your computer and use it in GitHub Desktop.
Quickly edit & reload your Zsh config with this handy function! 🛠️ Open your ~/.zshrc in your editor, save, and apply changes instantly. ✨
function profile() {
/usr/local/bin/zed -w ~/.zshrc
if [[ $? -eq 0 ]]; then
echo 'Sourcing ~/.zshrc...'
source ~/.zshrc
echo '~/.zshrc updated and sourced successfully!'
else
echo 'Failed to edit ~/.zshrc.'
fi
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment