-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathinstall.sh
More file actions
executable file
·76 lines (65 loc) · 2.08 KB
/
Copy pathinstall.sh
File metadata and controls
executable file
·76 lines (65 loc) · 2.08 KB
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
#!/usr/bin/env bash
set -o xtrace
# symbolic link dotfiles
DIR="$( cd "$( dirname "$0" )" && pwd )"
for source in "$DIR"/*
do
basename=$(basename "$source")
[ "$basename" = "README.md" ] && continue
[ "$basename" = "install.sh" ] && continue
target="$HOME/.$basename"
[ ! -e "$target" ] && echo "Linking $basename" && ln -s "$source" "$target"
done
which -s brew
if [[ $? != 0 ]] ; then
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
(echo; echo 'eval "$(/opt/homebrew/bin/brew shellenv)"') >> /Users/thomas/.zprofile
eval "$(/opt/homebrew/bin/brew shellenv)"
else
brew update
fi
# config
defaults write -g InitialKeyRepeat -int 10
defaults write -g KeyRepeat -int 2
# install
brew install git
brew install gh # then: gh auth login
brew install pinentry-mac
brew install autojump
brew install bat
brew install ripgrep
brew install gpg
brew install starship
brew install mos
brew install --cask karabiner-elements
brew install jq
brew install --cask iterm2
brew install --cask firefox
brew install --cask google-chrome
brew install --cask alfred
brew install --cask rectangle
brew install --cask 1password
brew install --cask mullvadvpn
brew install --cask resilio-sync
brew install go
brew install gopls
brew install node
npm install -g typescript-language-server typescript
brew install --cask docker
# brew install kubectl
# brew install k9s
# brew install --cask google-chrome
# brew install --cask google-cloud-sdk
# brew install --cask slack
# brew install --cask zoom
# brew install --cask postico
# brew install libpq
# brew link --force libpq
brew install direnv
brew install entr
brew install stylua
brew install fzf && $(brew --prefix)/opt/fzf/install --all
git clone https://github.com/Aloxaf/fzf-tab ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/fzf-tab
curl https://hishtory.dev/install.py | python3 -
curl https://github.com/ryanoasis/nerd-fonts/raw/master/patched-fonts/JetBrainsMono/Ligatures/Medium/complete/JetBrains%20Mono%20Nerd%20Font%20Complete%20Mono%20Medium.ttf -L > ~/Desktop/f.ttf && open ~/Desktop/f.ttf
brew install neovim