diff options
author | Jakob Stendahl <jakob.stendahl@outlook.com> | 2019-10-09 17:07:39 +0200 |
---|---|---|
committer | Jakob Stendahl <jakob.stendahl@outlook.com> | 2019-10-09 17:07:39 +0200 |
commit | 2b98d4a30d401403934a550c0e753942aa0faece (patch) | |
tree | fc61013f8ffad9810d6ddf72b6f7ffb2132fef26 /install/install_arch.sh | |
parent | f96d7947a488fd76e53b87e6a4d70eab903d9c4a (diff) | |
download | dotfiles-2b98d4a30d401403934a550c0e753942aa0faece.tar.gz dotfiles-2b98d4a30d401403934a550c0e753942aa0faece.zip |
:truck: Add install-scripts, reorganize
Diffstat (limited to 'install/install_arch.sh')
-rw-r--r-- | install/install_arch.sh | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/install/install_arch.sh b/install/install_arch.sh new file mode 100644 index 0000000..5306ba2 --- /dev/null +++ b/install/install_arch.sh @@ -0,0 +1,15 @@ +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"
+sudo pacman -S zsh-theme-powerlevel9k
+
+sudo pacman -S highlight atool w3m mediainfo
+
+ln -i zshrc ~/.zshrc
+
+
+echo "Please install the font Roboto mono nerd, and enable it in your terminal."
|