blob: f20645fd10e0adcd89fe22f14493d488d86eac11 (
plain)
| 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
 | # window settings -------------------------------
remember_window_size   no
initial_window_width   800
initial_window_height  480
# disabled for now, see kovidgoyal/kitty#8016
# background_opacity  0.90
# background_blur     45
# not supported on wayland, boo hoo
resize_in_steps        yes
# weird-size windows shouldn't pad top-left
placement_strategy     top-left
macos_show_window_title_in none
# cursor settings -------------------------------
cursor_trail        1
cursor_trail_decay  0.05  0.15
cursor_trail_start_threshold  12
# keybindings -----------------------------------
# jump to beginning and end of word
map ctrl+left send_text all \x1b\x62
map ctrl+right send_text all \x1b\x66
# "fake" keybindings ----------------------------
# for sending input not representable in ascii
# tmux: swap window with previous
map ctrl+shift+, send_key alt+shift+a
# tmux: swap window with next
map ctrl+shift+. send_key alt+shift+b
# tmux: view previous window
map ctrl+, send_key alt+shift+c
# tmux: view next window
map ctrl+. send_key alt+shift+d
 |