Skip to content

Instantly share code, notes, and snippets.

@AngelOnFira
Last active April 29, 2020 18:01
Show Gist options
  • Select an option

  • Save AngelOnFira/b8108c283e1ca6d16dcfdf2ed92e09c4 to your computer and use it in GitHub Desktop.

Select an option

Save AngelOnFira/b8108c283e1ca6d16dcfdf2ed92e09c4 to your computer and use it in GitHub Desktop.
# Software
sudo pacman -Syu
sudo pamac install visual-studio-code-bin synergy git tmux zsh firefox discord docker docker-compose vlc steam -y
sudo pamac build spotify --no-confirm -y
# Rust
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
# Python
yes | sudo pacman -S --needed base-devel openssl zlib bzip2 readline sqlite curl llvm ncurses xz tk libffi python-pyopenssl git
curl https://pyenv.run | bash
export PATH="/home/forest/.pyenv/bin:$PATH"
eval "$(pyenv init -)"
eval "$(pyenv virtualenv-init -)"
pyenv install 3.7.6
# Poetry
curl -sSL https://raw.githubusercontent.com/python-poetry/poetry/master/get-poetry.py | python
# VS Code
code --install-extension esbenp.prettier-vscode
code --install-extension ms-python.python
code --install-extension matklad.rust-analyzer
code --install-extension ms-vsliveshare.vsliveshare
code --install-extension eamodio.gitlens
# Oh my zsh
yes | sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
# Folders
mkdir -p ~/Documents/git
# Docker Permissions
sudo usermod -aG docker $USER
sudo systemctl enable docker
sudo systemctl start docker
# SSH
ssh-keygen -b 4096 -t rsa
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment