I'm a complete newbie, so I think I'm just missing a step, but have no idea.
I'm following tutorials for Rails. Lots of steps say, "and then editing the ~/.zshrc file.
" but I don't have any ~/.zshrc file. I'm looking at the folders in Sublime. Also none of the following ~/.zprofile, ~/.zlogin, ~/.zlogout exist. Though, under my home files, there is .zprezto folder. No zshenv either...
Do I just create the files? Seems like they should be downloaded from somewhere. I'm using Terminal with OS X. So lost.
echo 'write whatever' >.zshrc
Thanks in advance!
zsh
? You can check by opening a terminal and running the commandecho $0 $ZSH_VERSION
. If you are usingzsh
this should output something like "/bin/zsh 5.0.2
". If it just says "/bin/bash
" you are in fact usingbash
, the default shell in OS X, and adding anything to~/.zshrc
will have no effect. Unless it uses commands, syntax or options that work only in zsh, you probably could add it to~/.bashrc
instead. – Demonolater