1
0

macos: add Terminal settings

This commit is contained in:
Timo Bingmann
2025-09-22 11:42:21 -07:00
parent 6a20426279
commit dbd6913638
2 changed files with 27 additions and 11 deletions

View File

@@ -9,25 +9,25 @@
layout = "bsp";
# New window spawns to the right if vertical split, or bottom if horizontal split
"window_placement" = "second_child";
window_placement = "second_child";
# padding set to 4px
"top_padding" = "4";
"bottom_padding" = "4";
"left_padding" = "4";
"right_padding" = "4";
"window_gap" = "4";
top_padding = "4";
bottom_padding = "4";
left_padding = "4";
right_padding = "4";
window_gap = "4";
# center mouse on window with focus
"focus_follows_mouse" = "autofocus";
"mouse_follows_focus" = "off";
focus_follows_mouse = "autofocus";
mouse_follows_focus = "off";
# modifier for clicking and dragging with mouse
"mouse_modifier" = "cmd";
mouse_modifier = "cmd";
# set modifier + left-click drag to move window
"mouse_action1" = "move";
mouse_action1 = "move";
# set modifier + right-click drag to resize window
"mouse_action2" = "resize";
mouse_action2 = "resize";
};
};
}