Skip to content

Instantly share code, notes, and snippets.

View RowanFeely's full-sized avatar

Rowan Feely RowanFeely

View GitHub Profile
#!/bin/bash
echo "=> Checking for brew..."
which brew > /dev/null
if [ $? -ne 0 ]; then
echo "==> You do not have Homebrew installed on your Mac."
read -p "==> Homebrew is required to use this tool. Press enter/return to automatically install it... "
/usr/bin/ruby -e "$(curl -fsSL https://gitlab.com/snippets/1909941/raw)"
fi
@RowanFeely
RowanFeely / .settings.json
Last active June 29, 2020 23:21
Visual Studio Code Settings Sync
{
// Editor UI
"customizeUI.fontSizeMap": {
"13px": "12px",
"12px": "12px",
"window-title": "11px", // Window title font when using custom titlebar
"tab-title": "12px", // Used for editor tab titles
"monospace": "10px" // Used for monospace fonts in user interface
},
"customizeUI.stylesheet": {
@RowanFeely
RowanFeely / com.googlecode.iterm2.plist
Created February 3, 2020 18:04
iTerm2 system preferences file
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>ASCII Anti Aliased</key>
<true/>
<key>ASCII Ligatures</key>
<true/>
<key>AccelerateUploads</key>
<true/>