diff options
author | Jakob Stendahl <14180120+JakobST1n@users.noreply.github.com> | 2019-09-26 08:45:04 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-09-26 08:45:04 +0200 |
commit | 51a89ce2ac000b157aab367fa58d6855f2014562 (patch) | |
tree | 5ba0dfc234a1ad8412495739511e935110b4e3e0 /bin | |
parent | 0649eb9bc06f046f3a7dccbb07d7bbb494e59621 (diff) | |
download | dotfiles-51a89ce2ac000b157aab367fa58d6855f2014562.tar.gz dotfiles-51a89ce2ac000b157aab367fa58d6855f2014562.zip |
Update install_mac.sh
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/install_mac.sh | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/bin/install_mac.sh b/bin/install_mac.sh index 5c867bf..2ed9839 100755 --- a/bin/install_mac.sh +++ b/bin/install_mac.sh @@ -1,13 +1,27 @@ #!/bin/sh - +echo "> Install Homebrew" /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" +echo "> Install \"Highlight, atool, w3m, mediainfo\"" +bew install highlight atool w3m mediainfo + +echo "> Install Oh-My-Zsh" +sh -c "$(curl -fsSL https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh)" + +echo "> Install zsh-autosuggestions" +git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions +echo "> Install powerlevel9k" +brew tap sambadevi/powerlevel9k +echo "Install our dotfiles" ln -i tmux.conf ~/.tmux.conf ln -i bashrc ~/.bashrc ln -i vim/vimrc ~/.vimrc ln -i Hyperterm/hyper.js ~/.hyper.js ln -i Hyperterm/local ~/.hyper_plugins/local + + +echo "Please install the font Roboto mono nerd, and enable it in your terminal." |