Skip to content

Commit 7d191db

Browse files
committed
Updates
1 parent f860a12 commit 7d191db

File tree

3 files changed

+29
-2
lines changed

3 files changed

+29
-2
lines changed

brew.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff 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
164165
brew install libxml2

node.sh

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
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

work.sh

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,7 @@ echo 'export PATH="/opt/homebrew/opt/openjdk/bin:$PATH"' >> ~/.zshrc
2424

2525
brew install --cask --appdir="/Applications" docker
2626
brew 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

0 commit comments

Comments
 (0)