-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinstall.sh
executable file
·53 lines (44 loc) · 1.29 KB
/
install.sh
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
# Install CLI programs
brew install neovim
brew install tig
brew install htop
brew install tree
brew install node@20
brew install awscli
brew install kubernetes-cli
brew install k6
brew install k9s
brew install rust
brew install graphviz
# Install UI programs
brew install --cask karabiner-elements
brew install --cask iterm2
brew install --cask docker
brew install --cask intellij-idea-ce
brew install --cask phpstorm
brew install --cask workflowy
brew install --cask nosqlbooster-for-mongodb
brew install --cask postico
brew install --cask emacs
# Karabiner
mkdir -p ~/.config/karabiner
ln -sf ~/dotfiles/karabiner.json ~/.config/karabiner/karabiner.json
# Git
ln -sf ~/dotfiles/.gitignore_global ~/.gitignore_global
# Editor config
ln -sf ~/dotfiles/.editorconfig ~/.editorconfig
# Vim and VimMode
mkdir -p ~/.config/nvim
ln -sf ~/dotfiles/vimrc ~/.config/nvim/init.vim
ln -sf ~/dotfiles/vimrc ~/.ideavimrc
# Vim as a Git editor
git config --global core.editor nvim
# Doom Emacs
mkdir -p ~/.config/doom
ln -s ~/dotfiles/doom/config.el config.el
ln -s ~/dotfiles/doom/init.el init.el
ln -s ~/dotfiles/doom/packages.el packages.el
# Increase keyboard repeat rate
defaults write -g InitialKeyRepeat -int 10 # default 15
defaults write -g KeyRepeat -int 1 # default 2
# Don't forget to restart your machine!