Skip to content

Instantly share code, notes, and snippets.

View marco-lavagnino's full-sized avatar

Marco Lavagnino marco-lavagnino

View GitHub Profile
@marco-lavagnino
marco-lavagnino / worms.sh
Last active March 12, 2023 01:13
worms armaggedon
# Default directory in steam
cd ~/.steam/steam/steamapps/common/Worms\ Armageddon/
curl --output wkWormNAT2.zip http://worms.thecybershadow.net/wormkit/wkWormNAT2.zip
curl --output wkSuperFrontendHD_full.7z https://steps.keybase.pub/wa/wk/wkSuperFrontendHD_full.7z
unzip wkWormNAT2.zip
p7zip wkSuperFrontendHD_full.7z
# 217200 is the number associated to Worms Armaggedon
@marco-lavagnino
marco-lavagnino / setup_amazon.sh
Last active November 13, 2017 14:00
Subset of my other script to setup a new computer.
# tools
sudo apt-get update
sudo apt-get install -y git zsh vim language-pack-en
# zsh
sudo chsh -s $(which zsh) $(echo $USER)
git clone --recursive https://github.com/sorin-ionescu/prezto.git "${ZDOTDIR:-$HOME}/.zprezto"
wget https://gist.githubusercontent.com/marco-lavagnino/dceaa26b69db3d3362b6fed13718cd93/raw/517facb30ef981e999a9365daedeba0e28d5e4ce/.zpreztorc
cp .zprezto/runcoms/zshrc .zshrc
@marco-lavagnino
marco-lavagnino / setup.sh
Last active November 7, 2017 14:08
This installs most important things on a new computer.
mkdir ~/repos
# tools
sudo apt-get update
sudo apt-get install -y git
# zsh/terminator
sudo apt-get install -y terminator zsh vim
sudo chsh -s $(which zsh) $(echo $USER)
git clone --recursive https://github.com/sorin-ionescu/prezto.git "${ZDOTDIR:-$HOME}/.zprezto"
@marco-lavagnino
marco-lavagnino / .zpreztorc
Last active October 25, 2017 21:27
My preztorc
zstyle ':prezto:*:*' color 'yes'
zstyle ':prezto:load' pmodule \
'environment' \
'terminal' \
'history' \
'directory' \
'spectrum' \
'python' \
'utility' \