85 lines
1.6 KiB
TOML
Executable File
85 lines
1.6 KiB
TOML
Executable File
# shell config
|
|
shell = "wsl.exe"
|
|
live_config_reload = true
|
|
|
|
[window]
|
|
dimensions = { columns = 160, lines = 40 }
|
|
position.x = 750
|
|
position.y = 450
|
|
padding = { x = 5, y = 3 }
|
|
blur = true
|
|
dynamic_title = true
|
|
decorations = "full"
|
|
decorations_theme_variant = "None"
|
|
|
|
[scrolling]
|
|
history = 10000
|
|
multiplier = 3
|
|
|
|
# Default colors
|
|
[colors.primary]
|
|
background = '#24292e'
|
|
foreground = '#d1d5da'
|
|
|
|
# Normal colors
|
|
[colors.normal]
|
|
black = '#586069'
|
|
red = '#ea4a5a'
|
|
green = '#34d058'
|
|
yellow = '#ffea7f'
|
|
blue = '#2188ff'
|
|
magenta = '#b392f0'
|
|
cyan = '#39c5cf'
|
|
white = '#d1d5da'
|
|
|
|
# Bright colors
|
|
[colors.bright]
|
|
black = '#959da5'
|
|
red = '#f97583'
|
|
green = '#85e89d'
|
|
yellow = '#ffea7f'
|
|
blue = '#79b8ff'
|
|
magenta = '#b392f0'
|
|
cyan = '#56d4dd'
|
|
white = '#fafbfc'
|
|
|
|
[[colors.indexed_colors]]
|
|
index = 16
|
|
color = '#d18616'
|
|
|
|
[[colors.indexed_colors]]
|
|
index = 17
|
|
color = '#f97583'
|
|
|
|
[font]
|
|
normal.family = "Consolas"
|
|
normal.style = "Regular"
|
|
bold.family = "Consolas"
|
|
bold.style = "Bold"
|
|
italic.family = "Consolas"
|
|
italic.style = "Italic"
|
|
bold_italic.family = "Consolas"
|
|
bold_italic.style = "Bold Italic"
|
|
size = 9.5
|
|
|
|
[selection]
|
|
save_to_clipboard = true
|
|
|
|
[cursor]
|
|
style.blinking = "On"
|
|
blink_interval = 750
|
|
|
|
[terminal]
|
|
osc52 = "CopyPaste"
|
|
|
|
[mouse]
|
|
hide_when_typing = true
|
|
|
|
[keyboard]
|
|
bindings = [
|
|
{ key = "W", mods = "Control", action = "Quit" },
|
|
{ key = "T", mods = "Control" , action = "SpawnNewInstance" },
|
|
{ key = "C", mods = "Control", action = "Copy" },
|
|
{ key = "V", mods = "Control", action = "Paste" }
|
|
]
|