remove orange
This commit is contained in:
31
shell/README.md
Normal file
31
shell/README.md
Normal file
@@ -0,0 +1,31 @@
|
||||
# Shell
|
||||
|
||||
## ZSH
|
||||
|
||||
```bash
|
||||
# Install git before running
|
||||
sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
|
||||
```
|
||||
|
||||
Available prompt colors are red, blue, green, cyan, yellow, magenta, black, & white.
|
||||
|
||||
~/.zshrc
|
||||
|
||||
```bash
|
||||
cat << EOF > ~/.zshrc
|
||||
export ZSH="\$HOME/.oh-my-zsh"
|
||||
plugins=(git)
|
||||
source \$ZSH/oh-my-zsh.sh
|
||||
|
||||
autoload bashcompinit && bashcompinit
|
||||
autoload -U compinit; compinit
|
||||
|
||||
autoload -Uz promptinit
|
||||
promptinit
|
||||
prompt fade
|
||||
EOF
|
||||
```
|
||||
|
||||
```bash
|
||||
chsh -s $(which zsh) && chsh -s $(which zsh) ducoterra
|
||||
```
|
||||
Reference in New Issue
Block a user