Skip to content

Instantly share code, notes, and snippets.

@josephrocca
Last active May 21, 2019 13:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save josephrocca/8c74f7283f541f996ad810129dc69b8e to your computer and use it in GitHub Desktop.
Save josephrocca/8c74f7283f541f996ad810129dc69b8e to your computer and use it in GitHub Desktop.
server setup script
#!/usr/bin/env bash
# Node v12
curl -sL https://deb.nodesource.com/setup_12.x | sudo -E bash -
sudo apt-get install -y nodejs
# Kakoune
sudo apt install libncursesw5-dev pkg-config
git clone https://github.com/mawww/kakoune.git && cd kakoune/src
make
PREFIX=$HOME/.local make install
# Rust
curl https://sh.rustup.rs -sSf | sh
# JS Engines
npm install jsvu -g
export PATH="${HOME}/.jsvu:${PATH}"
jsvu
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment