-
Notifications
You must be signed in to change notification settings - Fork 0
/
Brewfile
62 lines (50 loc) · 1.4 KB
/
Brewfile
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
# Using Brew to Install
if OS.mac?
# taps
tap "homebrew/cask"
tap "homebrew/cask-fonts"
# Packages
brew "trash" # rm, but put in the trash rather than completely delete
# Applications
cask "alacritty" # a better terminal emulator
cask "docker"
cask "keepassxc"
cask "spotify"
cask "anaconda"
cask "inkscape"
#Fonts
cask "font-hack-nerd-font"
elsif OS.linux?
brew "xclip" # access to clipboard (similar to pbcopy/pbpaste)
end
# taps
tap "homebrew/bundle"
tap "homebrew/core"
#Packages
brew "ripgrep"
brew "tmuxinator"
brew "yt-dlp" # Youtube MP4 Downloader
brew "bat" # better cat
brew "cloc" # lines of code counter
brew "lazygit" # Terminal UI for git
brew "git-delta" # a better git diff
brew "entr" # file watcher / command runner
brew "fd" # find alternative
brew "fzf" # Fuzzy file searcher, used in scripts and in vim
brew "gh" # GitHub CLI
brew "git" # Git version control (latest version)
brew "gnupg" # GPG
brew "grep" # grep (latest)
brew "highlight" # code syntax highlighting
brew "htop" # a top alternative
brew "jq" # work with JSON files in shell scripts
brew "vim" # Vim (latest)
brew "wget" # internet file retriever
brew "htop" # a top alternative
brew "neofetch" # pretty system info
brew "neovim" # A better vim
brew "python" # python (latest)
brew "zsh" # zsh (latest)
brew "z" # switch between most used directories
brew "fswatch" #For Inkscape Watcher
brew "ffmpeg"