Skip to content

Instantly share code, notes, and snippets.

@jakowicz
jakowicz / .mica
Last active May 16, 2024 12:56
Mac Idempotent Configuration Amazingness - MICA
function vscode_install() {
plugin=$1
if [ -x "$(command -v code)" ]; then
code --install-extension $plugin
fi
}
#################
# Install Xcode command line tools
@fevangelou
fevangelou / install_nano_on_macos_without_homebrew.sh
Last active January 3, 2024 14:43
Install Nano Editor (with syntax highlighting) on MacOS without using Homebrew [updated Jan 2024]
#!/bin/bash
# Install Nano Editor (with syntax highlighting) on MacOS without using Homebrew
# You can get the latest version number from https://www.nano-editor.org
# Instructions:
# - First off, download this Bash script from the browser & make it executable:
# $ chmod +x install_nano_on_macos_without_homebrew.sh
# - If you have "wget" installed (you most likely do), just run the script with:
# $ ./install_nano_on_macos_without_homebrew.sh