-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.osx.minimal
executable file
·37 lines (27 loc) · 1.54 KB
/
.osx.minimal
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
#!/usr/bin/env bash
###############################################################################
# VS Code #
###############################################################################
# Fix key repeat in VS Code + vim mode
defaults write com.microsoft.VSCode ApplePressAndHoldEnabled -bool false
defaults write com.microsoft.VSCodeInsiders ApplePressAndHoldEnabled -bool false
# use the small analog clock in the menubar
defaults write com.apple.menuextra.clock IsAnalog -bool true
###############################################################################
# Finder #
###############################################################################
# Finder: show hidden files by default
defaults write com.apple.finder AppleShowAllFiles -bool true
# Finder: show all filename extensions
defaults write NSGlobalDomain AppleShowAllExtensions -bool true
# Finder: show status bar
defaults write com.apple.finder ShowStatusBar -bool true
# Finder: show path bar
defaults write com.apple.finder ShowPathbar -bool true
# expand save dialog by default
defaults write NSGlobalDomain NSNavPanelExpandedStateForSaveMode -bool true
defaults write NSGlobalDomain NSNavPanelExpandedStateForSaveMode2 -bool true
# don't save .DS_Store to network locations
defaults write com.apple.desktopservices DSDontWriteNetworkStores true
# bring up the hidden dock faster
defaults write com.apple.dock autohide-time-modifier -float 0.15