aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xinstall/install_fedora.sh18
1 files changed, 9 insertions, 9 deletions
diff --git a/install/install_fedora.sh b/install/install_fedora.sh
index 6b3a23a..83cfc48 100755
--- a/install/install_fedora.sh
+++ b/install/install_fedora.sh
@@ -34,10 +34,10 @@ if [ $res -eq 1 ]; then
tput sc
sh -c "$(curl -fsSL https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"
- # Zsh-autosuggestions
+ # Zsh-autosuggestions
git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions
- # Zsh-syntax-highlighting
- git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting
+ # Zsh-syntax-highlighting
+ git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting
tput rc; tput ed
fi
@@ -45,22 +45,22 @@ fi
dlgYN "> Install Powerline and Powerlevel10k" res
if [ $res -eq 1 ]; then
tput sc
- pip3 install pygments
+ pip3 install pygments
pip3 install powerline-status
- git clone --depth=1 https://github.com/romkatv/powerlevel10k.git ${ZSH_CUSTOM:-$HOME/.oh-my-zsh/custom}/themes/powerlevel10k
+ git clone --depth=1 https://github.com/romkatv/powerlevel10k.git ${ZSH_CUSTOM:-$HOME/.oh-my-zsh/custom}/themes/powerlevel10k
tput rc; tput ed
fi
dlgYN "> Create symlinks" res
if [ $res -eq 1 ]; then
- CWD=$(pwd)
+ CWD=$(pwd)
tput sc
ln -isf "$CWD/bin" ~/bin
ln -isf "$CWD/linux/tmux.conf" ~/.tmux.conf
ln -isf "$CWD/Common/zshrc" ~/.zshrc
- ln -isf "$CWD/Common/vimrc" ~/.vimrc
- ln -isf "$CWD/Common/vim" ~/.vim
- ln -isf "$CWD/Common/p10k.zsh" ~/.p10k.zsh
+ ln -isf "$CWD/Common/vimrc" ~/.vimrc
+ ln -isf "$CWD/Common/vim" ~/.vim
+ ln -isf "$CWD/Common/p10k.zsh" ~/.p10k.zsh
tput rc; tput ed
fi