Skip to content

Commit

Permalink
mac fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Ed Rooth committed Feb 21, 2017
1 parent 45eb32b commit f084a84
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 8 deletions.
17 changes: 17 additions & 0 deletions README.md
Expand Up @@ -13,3 +13,20 @@ INSTALL

TODO:
move git aliases to git config

UNINSTALL (MAC)
---------------

Remove all homebrew formulas:

```bash
brew list -1 | xargs brew uninstall --force
```

Remove homebrew itself:
https://github.com/Homebrew/brew/blob/master/docs/FAQ.md#how-do-i-uninstall-homebrew

```bash
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/uninstall)"
```

2 changes: 0 additions & 2 deletions git/.gitconfig
Expand Up @@ -10,5 +10,3 @@
editor = nvim
[gpg]
program = gpg2
[diff]
~/git-diff-wrapper
16 changes: 10 additions & 6 deletions setup-mac.sh
@@ -1,9 +1,7 @@
#!/bin/bash

# Prior to running this ensure the following are installed:
# Xcode, iTerm 2

cd $HOME
# Xcode, iTerm 2, Golang

echo "OSX: disable dashboard"
defaults write com.apple.dashboard mcx-disabled -boolean YES; killall Dock
Expand All @@ -16,7 +14,15 @@ brew doctor
brew update

echo "install brew apps"
brew install nvim git ag tree gpg2 ctags-exuberant mercurial openssl python unzip stow glide
brew install neovim/neovim/neovim
brew install git
brew install the_silver_searcher
brew install tree
brew install gpg2
brew install mercurial
brew install openssl
brew install python
brew install stow

echo "bew install standard gnu utils"
# The --default-names option will prevent Homebrew from prepending a g to each of the newly installed commands
Expand All @@ -41,8 +47,6 @@ brew install wget


echo "setup dotfiles"
git clone git@github.com:sym3tri/dotfiles.git
cd $HOME/dotfiles
stow bash
stow git
stow nvim
Expand Down

0 comments on commit f084a84

Please sign in to comment.