Create zsh cache folder

This commit is contained in:
Santiago Lo Coco 2021-12-31 15:26:35 -03:00
parent e8e57458a8
commit 1129ef7974
1 changed files with 1 additions and 0 deletions

View File

@ -319,6 +319,7 @@ finishInstallation() {
zshConfig() { zshConfig() {
sh -c "$(curl -fsSL https://raw.github.com/ohmyzsh/ohmyzsh/master/tools/install.sh)" "" --unattended 2>&1 | debug sh -c "$(curl -fsSL https://raw.github.com/ohmyzsh/ohmyzsh/master/tools/install.sh)" "" --unattended 2>&1 | debug
mkdir -p $HOME/.cache/zsh
touch $HOME/.cache/zsh/.histfile touch $HOME/.cache/zsh/.histfile
git clone https://github.com/romkatv/powerlevel10k.git $HOME/.oh-my-zsh/custom/themes/powerlevel10k 2>&1 | debug git clone https://github.com/romkatv/powerlevel10k.git $HOME/.oh-my-zsh/custom/themes/powerlevel10k 2>&1 | debug
} }