forked from nicknisi/dotfiles
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathBrewfile
56 lines (51 loc) · 1.71 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
if OS.mac?
# taps
tap "homebrew/cask"
tap "homebrew/cask-fonts"
brew "noti" # utility to display notifications from scripts
brew "trash" # rm, but put in the trash rather than completely delete
brew "lastpass-cli"
# Applications
cask "kitty" # a better terminal emulator
cask "imageoptim" # a tool to optimize images
# cask "1password/tap/1password-cli"
# Fonts
cask "font-fira-code"
cask "font-jetbrains-mono"
cask "font-cascadia-mono"
cask "font-3270-nerd-font"
elsif OS.linux?
brew "xclip" # access to clipboard (similar to pbcopy/pbpaste)
end
tap "homebrew/bundle"
tap "homebrew/core"
# packages
brew "bat" # better cat
brew "cloc" # lines of code counter
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 "neofetch" # pretty system info
brew "neovim" # A better vim
brew "pyenv" # A python enviroment manager
brew "nvm" # node version manager
brew "jenv" # java version manager
brew "ripgrep" # very fast file searcher
brew "fnm" # Fast Node version manager
brew "shellcheck" # diagnostics for shell sripts
brew "tmux" # terminal multiplexer
brew "tree" # pretty-print directory contents
brew "vim" # Vim (latest)
brew "wdiff" # word differences in text files
brew "wget" # internet file retriever
brew "z" # switch between most used directories
brew "zsh" # zsh (latest)
brew "antibody" # shell plugin manager