From 1164824504a01d4e542b4c260a6a39390fda1592 Mon Sep 17 00:00:00 2001 From: Nick Nisi Date: Sun, 19 Oct 2014 14:54:44 -0500 Subject: [PATCH] remove Brewfile and add brew install script * rename tools/ to scripts/ * create brew.sh for brew installation * move osx.sh to scripts/ * +x install.sh --- Brewfile | 25 ------------------------- scripts/brew.sh | 26 ++++++++++++++++++++++++++ {tools => scripts}/install.sh | 0 {setup => scripts}/osx.sh | 2 +- 4 files changed, 27 insertions(+), 26 deletions(-) delete mode 100644 Brewfile create mode 100755 scripts/brew.sh rename {tools => scripts}/install.sh (100%) mode change 100644 => 100755 rename {setup => scripts}/osx.sh (99%) diff --git a/Brewfile b/Brewfile deleted file mode 100644 index 8fbf1b0..0000000 --- a/Brewfile +++ /dev/null @@ -1,25 +0,0 @@ -# give me what I need, brew! - -# cli tools -install ack -install tree -install wget - -# development server setup -install nginx -install dnsmasq - -# development tools -install git -install hub -install macvim --override-system-vim -install reattach-to-user-namespace -install tmux -install zsh -install highlight -install nvm -install z - -# gitsh -tap thoughtbot/formulae -install gitsh diff --git a/scripts/brew.sh b/scripts/brew.sh new file mode 100755 index 0000000..e52f501 --- /dev/null +++ b/scripts/brew.sh @@ -0,0 +1,26 @@ +#!/bin/sh +# give me what I need, brew! + +# cli tools +brew install ack +brew install tree +brew install wget + +# development server setup +brew install nginx +brew install dnsmasq + +# development tools +brew install git +brew install hub +brew install macvim --override-system-vim +brew install reattach-to-user-namespace +brew install tmux +brew install zsh +brew install highlight +brew install nvm +brew install z + +# gitsh +brew tap thoughtbot/formulae +brew install gitsh diff --git a/tools/install.sh b/scripts/install.sh old mode 100644 new mode 100755 similarity index 100% rename from tools/install.sh rename to scripts/install.sh diff --git a/setup/osx.sh b/scripts/osx.sh similarity index 99% rename from setup/osx.sh rename to scripts/osx.sh index 1143ca0..d1c066d 100755 --- a/setup/osx.sh +++ b/scripts/osx.sh @@ -6,7 +6,7 @@ defaults write NSGlobalDomain AppleShowAllExtensions -bool true # echo "show hidden files by default" defaults write com.apple.Finder AppleShowAllFiles -bool false -# echo "only use UTF-8 ub Terminal.app" +# echo "only use UTF-8 in Terminal.app" defaults write com.apple.terminal StringEncodings -array 4 # echo "expand save dialog by default"