File tree Expand file tree Collapse file tree 3 files changed +29
-2
lines changed
Expand file tree Collapse file tree 3 files changed +29
-2
lines changed Original file line number Diff line number Diff line change @@ -158,7 +158,8 @@ brew install tree
158158# brew install webkit2png
159159# brew install zopfli
160160# brew install pkg-config libffi
161- # brew install pandoc
161+ brew install pandoc
162+ brew install ispell
162163
163164# Lxml and Libxslt
164165brew install libxml2
Original file line number Diff line number Diff line change 1+ #! /usr/bin/env bash
2+
3+ sudo -v
4+
5+ # Keep-alive: update existing `sudo` time stamp until the script has finished.
6+ while true ; do sudo -n true ; sleep 60; kill -0 " $$ " || exit ; done 2> /dev/null &
7+
8+ # Check for Homebrew,
9+ # Install if we don't have it
10+ if test ! $( which brew) ; then
11+ echo " Installing homebrew..."
12+ /bin/bash -c " $( curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh) "
13+ echo ' eval "$(/opt/homebrew/bin/brew shellenv)"' >> /Users/oscar/.zprofile
14+ eval " $( /opt/homebrew/bin/brew shellenv) "
15+ fi
16+
17+ # Make sure we’re using the latest Homebrew.
18+ brew update
19+
20+ # Installing node and needed dependencies for emacs to work properly
21+ brew install node
22+
23+ npm install prettier -g
Original file line number Diff line number Diff line change @@ -24,4 +24,7 @@ echo 'export PATH="/opt/homebrew/opt/openjdk/bin:$PATH"' >> ~/.zshrc
2424
2525brew install --cask --appdir=" /Applications" docker
2626brew install --cask --appdir=" /Applications" slack
27- brew install --cask --appdir=" /Applications" postman
27+ brew install --cask --appdir=" /Applications" insomnia
28+ brew install --cask --appdir=" /Applications" dbeaver-community
29+
30+ brew install graphviz
You can’t perform that action at this time.
0 commit comments