Adding brew script and removing old DefaultKeyBinding.dict thing
parent
31eb28ecd1
commit
beecb80bb8
@ -1,4 +0,0 @@
|
||||
{
|
||||
"^w" = deleteWordBackward:;
|
||||
}
|
||||
|
@ -0,0 +1,41 @@
|
||||
#!/bin/bash
|
||||
|
||||
sudo -v # ask for password only at the beginning
|
||||
|
||||
brew update
|
||||
brew upgrade
|
||||
brew tap homebrew/versions
|
||||
brew tap phinze/homebrew-cask
|
||||
|
||||
brew install fish
|
||||
# TODO check if it's already in there first!!
|
||||
echo "/usr/local/bin/fish" | sudo tee -a /etc/shells
|
||||
chsh -s /usr/local/bin/fish dustinswan
|
||||
brew install ack
|
||||
brew install brew-cask
|
||||
brew install git
|
||||
brew install tmux
|
||||
brew install vim
|
||||
brew install wget --enable-iri
|
||||
|
||||
brew install node
|
||||
brew install chruby
|
||||
brew install ruby-install
|
||||
|
||||
brew install mutt
|
||||
brew install mbsync
|
||||
|
||||
brew cask install rdio
|
||||
brew cask install alfred
|
||||
brew cask alfred link
|
||||
brew cask install google-chrome
|
||||
brew cask install charles
|
||||
brew cask install dropbox
|
||||
# brew cask install bittorrent-sync
|
||||
brew cask install iterm2
|
||||
brew cask install macvim
|
||||
brew cask install vlc
|
||||
brew cask install transmission
|
||||
brew cask install firefox
|
||||
brew cask install the-unarchiver
|
||||
brew cleanup
|
Loading…
Reference in New Issue