Created
January 4, 2025 01:38
-
-
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. ✨
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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