-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmacos-settings.toml
More file actions
70 lines (58 loc) · 2.39 KB
/
Copy pathmacos-settings.toml
File metadata and controls
70 lines (58 loc) · 2.39 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
# macOS Settings Configuration
# This file tracks macOS settings and triggers the run_onchange script when modified
# Add new settings categories or options here to trigger automatic reconfiguration
[version]
config_version = "1.0.0"
last_updated = "2024-08-30"
[keyboard_shortcuts]
# Mission Control shortcuts disabled so ctrl+arrow reaches the terminal
# (kitty neighboring_window / tmux pane navigation) instead of macOS.
disable_ctrl_left_arrow = true # ID 79: Ctrl+Left Arrow (Move left a space)
disable_ctrl_right_arrow = true # ID 81: Ctrl+Right Arrow (Move right a space)
disable_ctrl_shift_left = true # ID 80: Ctrl+Shift+Left Arrow (Move window left a space)
disable_ctrl_shift_right = true # ID 82: Ctrl+Shift+Right Arrow (Move window right a space)
disable_ctrl_up_arrow = true # ID 32: Ctrl+Up Arrow (Mission Control)
disable_ctrl_down_arrow = true # ID 33: Ctrl+Down Arrow (Application windows / App Exposé)
[finder]
show_hidden_files = true
show_file_extensions = true
show_path_bar = true
show_status_bar = true
default_view = "column" # Options: icon, list, column, gallery
[dock]
autohide = true
minimize_to_application = true
show_recent_applications = false
[development]
disable_press_and_hold = true # Enable key repeat instead of accents
key_repeat_rate = 1 # Fast key repeat (1-2 recommended)
initial_key_repeat = 10 # Delay before repeat starts
[security]
require_password_immediately = true
screensaver_password_delay = 0 # Seconds (0 = immediate)
[trackpad]
tap_to_click = true
three_finger_drag = true
# =============================================================================
# FUTURE SETTINGS EXAMPLES (commented out)
# =============================================================================
# [menu_bar]
# # Show battery percentage
# show_battery_percentage = true
# # Hide Siri from menu bar
# hide_siri = true
# [screenshots]
# # Change default screenshot location
# location = "~/Desktop/Screenshots"
# # Change default screenshot format
# format = "png" # Options: png, jpg, gif, pdf
# [energy_saver]
# # Never sleep when plugged in
# prevent_sleep_on_power = true
# # Display sleep time (minutes)
# display_sleep_time = 10
# [text_input]
# # Disable automatic spelling correction
# disable_auto_correct = false
# # Disable smart quotes and dashes
# disable_smart_punctuation = false