Skip to content

Commit

Permalink
shuttle
Browse files Browse the repository at this point in the history
  • Loading branch information
marciotoshio committed Jul 14, 2016
1 parent 04041fc commit 87591d4
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 4 deletions.
10 changes: 10 additions & 0 deletions .profile
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# Add `~/bin` to the `$PATH`
export PATH="$HOME/bin:$PATH";

# Load the shell dotfiles, and then some:
# * ~/.path can be used to extend `$PATH`.
# * ~/.extra can be used for other settings you don’t want to commit.
for file in ~/.{path,exports,aliases,functions,extra}; do
[ -r "$file" ] && [ -f "$file" ] && source "$file";
done;
unset file;
1 change: 1 addition & 0 deletions .shuttle.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
"For more information on how to configure, please see http://fitztrev.github.io/shuttle/"
],
"terminal": "Terminal.app",
"default_theme": "Homebrew",
"launch_at_login": false,
"show_ssh_config_hosts": true,
"ssh_config_ignore_hosts": [],
Expand Down
2 changes: 1 addition & 1 deletion .zshrc
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Path to your oh-my-zsh installation.
export ZSH=/Users/mide/.oh-my-zsh
export ZSH=$HOME/.oh-my-zsh

# Set name of the theme to load.
# Look in ~/.oh-my-zsh/themes/
Expand Down
3 changes: 2 additions & 1 deletion bootstrap.sh
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@ function doIt() {
###############################################################################

# Install Sublime Text settings
cp -r init/Preferences.sublime-settings ~/Library/Application\ Support/Sublime\ Text*/Packages/User/Preferences.sublime-settings 2> /dev/null
echo "Copying Sublime preferences"
cp -r init/Preferences.sublime-settings ~/Library/Application\ Support/Sublime\ Text*/Packages/User/ 2> /dev/null
}

if [ "$1" == "--force" -o "$1" == "-f" ]; then
Expand Down
2 changes: 1 addition & 1 deletion init/Preferences.sublime-settings
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"node_modules"
],
"font_face": "Monaco",
"font_size": 18,
"font_size": 15,
"highlight_modified_tabs": true,
"hot_exit": false,
"match_brackets": true,
Expand Down
3 changes: 2 additions & 1 deletion sh/brew-cask.sh
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,9 @@ brew cask install steam
brew cask install sublime-text
brew cask install sequel-pro
brew cask install transmission
#Virtualbox needs to be v4.3 to works with vagrant
#brew cask install virtualbox
brew cask install vagrant
brew cask install virtualbox

###############################################################################
# Launch apps from Alfred
Expand Down

0 comments on commit 87591d4

Please sign in to comment.