-
Notifications
You must be signed in to change notification settings - Fork 0
/
macos.conf.yaml
42 lines (41 loc) · 1.36 KB
/
macos.conf.yaml
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
- create:
- ~/Screenshots
- shell:
-
description: Installing python3, zsh, bat, neovim, fd, ripgrep, tree-sitter from homebrew
command: brew install python3 zsh bat neovim fd ripgrep tree-sitter
stderr: true
-
description: Changing screenshot location
command: defaults write com.apple.screencapture location ~/Screenshots && killall SystemUIServer
stdout: true
stderr: true
-
description: Disabling screenshot drop shadow
command: defaults write com.apple.screencapture disable-shadow -bool TRUE
stdout: true
stderr: true
-
description: Showing hidden files
command: defaults write com.apple.finder AppleShowAllFiles YES
stdout: true
stderr: true
-
description: Disabling spellchecking etc
command: defaults write -g NSAutomaticCapitalizationEnabled -bool FALSE && defaults write -g NSAutomaticPeriodSubstitutionEnabled -bool FALSE && defaults write -g NSAutomaticSpellingCorrectionEnabled -bool FALSE
-
description: Installing workflow dependencies
command: brew install ffmpeg imagemagick
stdout: true
stderr: true
-
description: Installing vim dependencies
command: brew install terraform-ls
stderr: true
- link:
~/Library/Services/:
description: Installing Quick Actions
create: true
force: true
glob: true
path: macos_quick_actions/*