Yesterday I installed Zsh, and tried to configure some things, but somehow everything is messed up. A lot of commands do not work, I've done PROMPT
in ~/.zshrc but it does not work correctly either.
For example when I am trying to search for something:
Now as you can see I also don't have the prompt name even though I added the PROMPT="...."
configuration in the ~/.zshrc
file.
Is it possible to somehow reset the whole configuration?
zsh echo $PATH
/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/home/mosquito/HP_Fortify/HP_Fortify_SCA_and_Apps_3.80/bin:/home/mosquito/HP_Fortify/HP_Fortify_SCA_and_Apps_3.80/bin
zsh cat /etc/shells
/etc/shells: valid login shells
/bin/sh
/bin/dash
/bin/bash
/bin/rbash
/bin/zsh
/usr/bin/zsh
find
is working, but just does not do what you excpected: Because the*
are not quoted ('escaped'),zsh
is trying (and failing) to find files matching*zsh*
in the current directory (~
, hidden files - like~/.zshrc
- are excluded). Tryfind / -name '*zsh*'
instead. As for resetting: if you only ever changed~/.zshrc
you may just delete it and start from fresh. – Adaephon Jun 16 '14 at 07:33zsh
does not do anything.➜ zsh echo $(which zsh) /usr/bin/zsh
– user1880405 Jun 16 '14 at 07:47zsh
does not have any effect sir. – user1880405 Jun 16 '14 at 07:50