-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinstall_mac.txt
72 lines (48 loc) · 1.9 KB
/
install_mac.txt
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
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
Download dot files (check option to use gnu stow).
Download and install:
1. karabiner
2. iterm
3. chrome
4. better touch tool
brew cask install bettertouchtool
brew cask install iterm2
brew cask install karabiner-elements
brew install fzf
brew cask install freesmug-chromium
brew install yarn
brew install stow
brew install autojump
brew install wget
brew install diff-so-fancy
brew install powerline-go
brew install the_silver_searcher
brew install neovim
brew install fd
brew install reattach-to-user-namespace
# install fonts
curl -L https://github.com/hbin/top-programming-fonts/raw/master/install.sh | bash
sudo spctl --master-disable # disable security error when trying to install from unknown dev
TODO:
powerline - autoinstall powerline instead of powerline-go
# .osx
# Disable the “Are you sure you want to open this application?” dialog
defaults write com.apple.LaunchServices LSQuarantine -bool false
# Disable auto-correct
defaults write NSGlobalDomain NSAutomaticSpellingCorrectionEnabled -bool false
# Finder: show hidden files by default
defaults write com.apple.Finder AppleShowAllFiles -bool true
# Finder: show path bar
defaults write com.apple.finder ShowPathbar -bool true
# Disable the warning when changing a file extension
defaults write com.apple.finder FXEnableExtensionChangeWarning -bool false
# Automatically hide and show the Dock
defaults write com.apple.dock autohide -bool true
# Disable press and hold character picker.
defaults write -g ApplePressAndHoldEnabled -bool false
defaults write -g InitialKeyRepeat -int 15 # normal minimum is 15 (225 ms)
defaults write -g KeyRepeat -int 1 # normal minimum is 2 (30 ms)
# remove all default app icons from the Dock
defaults write com.apple.dock persistent-apps -array
#hide menu
defaults write NSGlobalDomain _HIHideMenuBar -bool true