aboutsummaryrefslogtreecommitdiff
path: root/install/install_fedora.sh
diff options
context:
space:
mode:
authorJakob Stendahl <14180120+JakobST1n@users.noreply.github.com>2021-01-17 21:19:36 +0100
committerGitHub <noreply@github.com>2021-01-17 21:19:36 +0100
commit3956a01db7d33c289593d0ed409dc4a439f7c00b (patch)
tree2345ce2a305aeb0dcd859e511ecdc12c9c8ebf02 /install/install_fedora.sh
parentd0f5528ec11c9957dd9b62688771eb62acb0c47f (diff)
downloaddotfiles-3956a01db7d33c289593d0ed409dc4a439f7c00b.tar.gz
dotfiles-3956a01db7d33c289593d0ed409dc4a439f7c00b.zip
Update install_fedora.sh
Diffstat (limited to 'install/install_fedora.sh')
-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