Run
./install
That won't overwrite any existing dotfiles; you'll have to stash them manually before running it if you want to keep them.
Also run as ./install
Note- the below instructions are incomplete + partially incorrect... #4 will fix this up to be more readable! Apologies in the meantime.
https://github.com/jwilm/alacritty
# install cargo
curl https://sh.rustup.rs -sSf | sh
# install dependencies
sudo apt install cmake libfreetype6-dev libfontconfig1-dev xclip
# install alacritty
cargo install --git https://github.com/jwilm/alacritty
# apply in ubuntu
gsettings set org.gnome.desktop.default-applications.terminal exec 'alacritty'
sudo apt install python-virtualenv
zsh first with sudo apt install zsh
https://github.com/robbyrussell/oh-my-zsh
https://github.com/denysdovhan/spaceship-zsh-theme
git clone https://github.com/zsh-users/zsh-autosuggestions $ZSH_CUSTOM/plugins/zsh-autosuggestions
https://github.com/cyrus-and/gdb-dashboard
https://github.com/BurntSushi/ripgrep
https://github.com/junegunn/fzf#using-git
https://github.com/tmux-plugins/tpm
gsettings set org.gnome.desktop.wm.preferences mouse-button-modifier "<Super>"
sudo apt-get install urlview
https://github.com/insanum/dotfiles/blob/master/urlview
Somewhat nicer diffs, eg diff -du <file1> <file2> | ydiff
pip install ydiff
Not using this anymore, but here's the instructions
https://raw.githubusercontent.com/git/git/master/templates/hooks--fsmonitor-watchman.sample
git clone https://github.com/facebook/watchman.git
cd watchman
git checkout v4.9.0
./autogen.sh && ./configure && make && sudo make install
# because you know it's right
echo 999999 | sudo tee -a /proc/sys/fs/inotify/max_user_watches && echo 999999 | sudo tee -a /proc/sys/fs/inotify/max_queued_events && echo 999999 | sudo tee -a /proc/sys/fs/inotify/max_user_instances
# install the hook to whatever repo
wget https://raw.githubusercontent.com/git/git/master/templates/hooks--fsmonitor-watchman.sample -O .git/hooks/query-watchman && chmod +x .git/hooks/query-watchman
git config core.fsmonitor .git/hooks/query-watchman