Created
February 27, 2010 00:02
-
-
Save ryanjm/316327 to your computer and use it in GitHub Desktop.
Simply customizing shell
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 characters
| I wanted to customize the linux box I have to log into. | |
| First I changed my zsh profile: | |
| In my .zshrc file: | |
| PROMPT="[csil]%~%# " | |
| In order to get zsh to load by default I found out which shell it was running: | |
| echo $SHELL | |
| $/bin/tcsh | |
| In .tcshrc file: | |
| exec zsh | |
| That's it. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment