-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBrewfile_initial
61 lines (50 loc) · 1.34 KB
/
Brewfile_initial
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
# sets up the basic stuff you need on a new mac
# to run: brew bundle --file=Brewfile_initial
# for homebrew
tap "homebrew/bundle"
# Web browsers
cask "google-chrome"
cask "firefox"
#cask "opera"
# tools that you just need
brew "midnight-commander"
brew "wget"
cask "sublime-text"
cask "visual-studio-code"
cask "github"
cask "warp"
# tools for development
cask "postman"
brew "nvm"
# After installing nvm, add the following to your shell profile (e.g., ~/.zshrc or ~/.bash_profile):
# export NVM_DIR="$HOME/.nvm"
# [ -s "/usr/local/opt/nvm/nvm.sh" ] && \. "/usr/local/opt/nvm/nvm.sh"
# [ -s "/usr/local/opt/nvm/etc/bash_completion.d/nvm" ] && \. "/usr/local/opt/nvm/etc/bash_completion.d/nvm"
# Then, to install and use the latest LTS version of Node.js, run:
# nvm install --lts
# nvm use --lts
brew "yarn"
# a faster npm manager for development
brew "pnpm"
# for editing ansible in vscode
brew "ansible"
brew "ansible-lint"
# tools virtual machines and containers
cask "docker"
cask "utm"
cask "multipass"
# tools for working with kubernetes
cask "lens"
brew "k9s"
# tools for office work
# cask "libreoffice"
# tools for communication
cask "messenger"
cask "whatsapp"
# tools for image editing
cask "gimp"
# tools for remote access
# brew "tailscale" # this is not working yet
cask "microsoft-remote-desktop"
# tools for file sharing
# cask "dropbox"