Skip to content

Commit 93504ab

Browse files
Chris DailChris Dail
Chris Dail
authored and
Chris Dail
committedFeb 24, 2020
Few tweaks to packages in setup
1 parent c8e65d8 commit 93504ab

File tree

3 files changed

+11
-18
lines changed

3 files changed

+11
-18
lines changed
 

‎Brewfile

+5-10
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,6 @@ brew "git"
1111
brew "jq"
1212
brew "md5sha1sum"
1313
brew "nginx"
14-
brew "p7zip"
15-
brew "sshuttle"
1614
brew "ripgrep"
1715
brew "tmux"
1816
brew "tree"
@@ -40,12 +38,12 @@ cask "caskroom/fonts/font-inconsolata-g-for-powerline"
4038
cask "caskroom/fonts/font-dejavu-sans-mono-for-powerline"
4139
cask "caskroom/fonts/font-source-code-pro"
4240
cask "caskroom/fonts/font-fira-code"
41+
cask "caskroom/fonts/font-cascadia-mono"
4342

4443
# Apps
4544
cask "evernote"
4645
cask "db-browser-for-sqlite"
4746
cask "psequel"
48-
cask "xmind"
4947
cask "iterm2"
5048
cask "superduper"
5149
cask "android-file-transfer"
@@ -55,19 +53,16 @@ cask "karabiner-elements"
5553
cask "typora"
5654
cask "spectacle"
5755
cask "wireshark"
58-
cask "gitify"
59-
cask "tigervnc-viewer"
6056

6157
# Unproductivity
6258
cask "spotify"
6359
cask "vlc"
6460
cask "aerial"
6561

6662
# Devtools
67-
brew "hub"
63+
brew "github/gh/gh"
6864
brew "ansible"
6965
brew "terraform"
70-
brew "httpie"
7166
brew "packer"
7267
brew "kubectl"
7368
brew "kops"
@@ -76,9 +71,9 @@ brew "awscli"
7671
brew "postgres"
7772
brew "terminal-notifier"
7873
cask "slack"
79-
cask "virtualbox"
80-
cask "virtualbox-extension-pack"
81-
cask "vagrant"
74+
#cask "virtualbox"
75+
#cask "virtualbox-extension-pack"
76+
#cask "vagrant"
8277
cask "docker"
8378
cask "insomnia"
8479

‎README.md

+1-8
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,11 @@
22

33
This repository provides my default mac environment setup. Feel free to fork and customize.
44

5-
## Prerequisites
6-
7-
The Xcode commandline tools are required to install Homebrew. You can install them by running:
8-
9-
```
10-
xcode-select --install
11-
```
12-
135
## Install
146

157
Run the setup script. This will:
168

9+
* Install Xcode commandline tools (required for Homebrew)
1710
* Install default `dotfiles` into user home directory. These are installed with symbolic links so any changes to these files will be reflected in the `mac-setup` repo.
1811
* Install homebrew
1912
* Install brew apps, casks, fonts (from `Brewfile`)

‎setup

+5
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
33
DIR=$( cd "$( dirname "$0" )" && pwd )
44
DOTFILES=$DIR/dotfiles
55

6+
xcode() {
7+
xcode-select --install
8+
}
9+
610
linked() {
711
ln -shf "$DOTFILES/$1" "$HOME/$1"
812
}
@@ -111,6 +115,7 @@ watchPam() {
111115
sudo cp misc/pam.d_sudo /etc/pam.d/sudo
112116
}
113117

118+
xcode
114119
dotfiles
115120
updateBrew
116121
brewBundle

0 commit comments

Comments
 (0)
Please sign in to comment.