Skip to content

Instantly share code, notes, and snippets.

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 uriberma/aa7b4ab68614ef28a7057673537592e6 to your computer and use it in GitHub Desktop.
Save uriberma/aa7b4ab68614ef28a7057673537592e6 to your computer and use it in GitHub Desktop.
Install Nano Editor v4.0 (with syntax highlighting) on the Mac
#!/bin/bash
# Install Nano Editor (https://www.nano-editor.org) with syntax highlighting on the Mac
# Version 4.0 ("Thy Rope of Sands") released March 24th 2019
cd ~/
wget https://www.nano-editor.org/dist/v4/nano-4.0.tar.gz
tar -xvf nano-4.0.tar.gz
mv nano-4.0 .nano
cd .nano/
./configure
make
sudo make install
touch ~/.nanorc
cat > "~/.nanorc" <<EOF
# Enable syntax highlighting in Nano
include ~/.nano/syntax/*.nanorc
EOF
exit
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment