Skip to content

Instantly share code, notes, and snippets.

@eduardomarcos
Last active February 28, 2021 00:43
Show Gist options
  • Save eduardomarcos/0061074acfbb1da07638d52c82f0e1df to your computer and use it in GitHub Desktop.
Save eduardomarcos/0061074acfbb1da07638d52c82f0e1df to your computer and use it in GitHub Desktop.
#!/bin/bash
sudo apt-get update
sudo apt-get install --yes curl vim htop xclip ranger neofetch git net-tools
# hstr
# https://github.com/dvorka/hstr
mkdir -p source
cd ~/source
git clone https://github.com/dvorka/hstr.git
sudo apt-get install --yes automake gcc make libncursesw5-dev libreadline-dev pkg-config
cd ~/source/hstr
cd ./build/tarball && ./tarball-automake.sh && cd ../..
./configure && make && sudo make install
# Oh-My-Zsh
# https://github.com/ohmyzsh/ohmyzsh
# Manual Font installation -> https://github.com/romkatv/powerlevel10k#manual-font-installation
sudo apt-get install --yes zsh
sudo apt-get install --yes fonts-powerline
sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
git clone --depth=1 https://github.com/romkatv/powerlevel10k.git ${ZSH_CUSTOM:-$HOME/.oh-my-zsh/custom}/themes/powerlevel10k
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment