remove orange

This commit is contained in:
2024-06-25 14:22:54 -04:00
parent 4e51d263fb
commit d1afa569cc
14 changed files with 60 additions and 224 deletions

31
shell/README.md Normal file
View 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
```