This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
// 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": { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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/> |
NewerOlder