diff options
author | Jakob Stendahl <14180120+JakobST1n@users.noreply.github.com> | 2021-01-17 21:35:54 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-17 21:35:54 +0100 |
commit | fef2378f8eaf1ea5d4af00dfea6a302348b62310 (patch) | |
tree | a316a05541f50cbb93d7ba069c2bb56e868c6286 | |
parent | b1cf71b02914dd77e6dd79d24a0ccfa131879251 (diff) | |
download | dotfiles-fef2378f8eaf1ea5d4af00dfea6a302348b62310.tar.gz dotfiles-fef2378f8eaf1ea5d4af00dfea6a302348b62310.zip |
Update install_mac.sh
-rwxr-xr-x | install/install_mac.sh | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/install/install_mac.sh b/install/install_mac.sh index 4097395..05a88b3 100755 --- a/install/install_mac.sh +++ b/install/install_mac.sh @@ -32,7 +32,7 @@ fi dlgYN "> Install \"Highlight, atool, w3m, mediainfo, vim\"" res if [ $res -eq 1 ]; then tput sc - brew install highlight atool w3m mediainfo vim + brew install highlight atool w3m mediainfo vim tput rc; tput ed fi @@ -41,10 +41,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 @@ -52,25 +52,25 @@ fi dlgYN "> Install Powerline && powerlevel10k" res if [ $res -eq 1 ]; then tput sc - pip3 install pygments + pip3 install pygments pip3 install powerline-status - brew install romkatv/powerlevel10k/powerlevel10k + brew install romkatv/powerlevel10k/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/mac/tmux.conf" ~/.tmux.conf - ln -isf "$CWD/mac/Hyperterm/hyper.js" ~/.hyper.js - ln -isf "$CWD/mac/Hyperterm/local" ~/.hyper_plugins/local + ln -isf "$CWD/mac/tmux.conf" ~/.tmux.conf + ln -isf "$CWD/mac/Hyperterm/hyper.js" ~/.hyper.js + ln -isf "$CWD/mac/Hyperterm/local" ~/.hyper_plugins/local 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 - rm -r ~/Library/texmf/tex && ln -isf "$CWD/Common/tex" ~/Library/texmf/tex + ln -isf "$CWD/Common/vimrc" ~/.vimrc + ln -isf "$CWD/Common/vim" ~/.vim + ln -isf "$CWD/Common/p10k.zsh" ~/.p10k.zsh + rm -r ~/Library/texmf/tex && ln -isf "$CWD/Common/tex" ~/Library/texmf/tex tput rc; tput ed fi |