- 
      
 - 
        
Save alinademi/af7d01e63a10d4b1f6995baff6fa794a to your computer and use it in GitHub Desktop.  
Revisions
- 
        
webdevsuperfast revised this gist
Oct 13, 2021 . No changes.There are no files selected for viewing
 - 
        
webdevsuperfast revised this gist
Oct 11, 2021 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -5,7 +5,7 @@ `echo $(which zsh) | sudo tee -a /etc/shells` ## Set ZSH as default user shell `sudo chsh -s $(which zsh) $USER` ## Execute Shell or just restart terminal to take effect `exec $SHELL`  - 
        
webdevsuperfast created this gist
Sep 7, 2021 .There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,11 @@ ## Install ZSH via HomeBrew `brew install zsh` ## Add ZSH to `/etc/shells` `echo $(which zsh) | sudo tee -a /etc/shells` ## Set ZSH as default user shell `sudo chsh -s $(which zsh) $(which $USER)` ## Execute Shell or just restart terminal to take effect `exec $SHELL`