alacritty: update to toml format alacritty.toml
This commit is contained in:
parent
0370aa726d
commit
efc91fff67
2 changed files with 120 additions and 0 deletions
120
.config/alacritty/alacritty.toml
Normal file
120
.config/alacritty/alacritty.toml
Normal file
|
@ -0,0 +1,120 @@
|
|||
live_config_reload = true
|
||||
|
||||
[colors]
|
||||
transparent_background_colors = true
|
||||
|
||||
[[colors.indexed_colors]]
|
||||
color = "0xff9e64"
|
||||
index = 16
|
||||
|
||||
[[colors.indexed_colors]]
|
||||
color = "0xdb4b4b"
|
||||
index = 17
|
||||
|
||||
# Onedarker
|
||||
# primary:
|
||||
# foreground: "#abb2bf"
|
||||
# background: "#282c34"
|
||||
#
|
||||
# # Normal colors
|
||||
# normal:
|
||||
# black: "#1b1d1e"
|
||||
# red: "#ff5995"
|
||||
# green: "#b6e354"
|
||||
# yellow: "#f3fd21"
|
||||
# blue: "#3f78ff"
|
||||
# magenta: "#9e6ffe"
|
||||
# cyan: "#23ced4"
|
||||
# white: "#abb2bf"
|
||||
#
|
||||
# # Bright colors
|
||||
# bright:
|
||||
# black: "#505354"
|
||||
# red: "#ff5995"
|
||||
# green: "#b6e354"
|
||||
# yellow: "#f3fd21"
|
||||
# blue: "#3f78ff"
|
||||
# magenta: "#9e6ffe"
|
||||
# cyan: "#23ced4"
|
||||
# white: "#f8f8f2"
|
||||
|
||||
[colors.bright]
|
||||
black = "0x414868"
|
||||
blue = "0x7aa2f7"
|
||||
cyan = "0x7dcfff"
|
||||
green = "0x9ece6a"
|
||||
magenta = "0xbb9af7"
|
||||
red = "0xf7768e"
|
||||
white = "0xc0caf5"
|
||||
yellow = "0xe0af68"
|
||||
|
||||
[colors.normal]
|
||||
black = "0x15161E"
|
||||
blue = "0x7aa2f7"
|
||||
cyan = "0x7dcfff"
|
||||
green = "0x9ece6a"
|
||||
magenta = "0xbb9af7"
|
||||
red = "0xf7768e"
|
||||
white = "0xa9b1d6"
|
||||
yellow = "0xe0af68"
|
||||
|
||||
[font]
|
||||
size = 11.5
|
||||
normal = { family = "SauceCodePro NF" }
|
||||
italic = { family = "SauceCodePro NF" }
|
||||
bold = { family = "SauceCodePro NF" }
|
||||
|
||||
offset = { x = 0, y = 0 }
|
||||
glyph_offset = { x = 0, y = 0 }
|
||||
|
||||
[colors.primary]
|
||||
background = "0x1a1b26"
|
||||
foreground = "0xc0caf5"
|
||||
|
||||
[[keyboard.bindings]]
|
||||
action = "Paste"
|
||||
key = "V"
|
||||
mods = "Control|Shift"
|
||||
|
||||
[[keyboard.bindings]]
|
||||
action = "Copy"
|
||||
key = "C"
|
||||
mods = "Control|Shift"
|
||||
|
||||
[[keyboard.bindings]]
|
||||
action = "ResetFontSize"
|
||||
key = "Key0"
|
||||
mods = "Control"
|
||||
|
||||
[[keyboard.bindings]]
|
||||
action = "IncreaseFontSize"
|
||||
key = "Equals"
|
||||
mods = "Control"
|
||||
|
||||
[[keyboard.bindings]]
|
||||
action = "IncreaseFontSize"
|
||||
key = "Plus"
|
||||
mods = "Control|Shift"
|
||||
|
||||
[[keyboard.bindings]]
|
||||
action = "DecreaseFontSize"
|
||||
key = "Minus"
|
||||
mods = "Control"
|
||||
|
||||
[[keyboard.bindings]]
|
||||
action = "ToggleFullscreen"
|
||||
key = "F11"
|
||||
|
||||
[mouse]
|
||||
hide_when_typing = true
|
||||
|
||||
[selection]
|
||||
semantic_escape_chars = ",│`|:\"' ()[]{}<>"
|
||||
save_to_clipboard = true
|
||||
|
||||
[window]
|
||||
# startup_mode = "Fullscreen"
|
||||
padding = { x = 0, y = 4 }
|
||||
|
||||
[scrolling]
|
||||
history = 10000
|
Loading…
Add table
Add a link
Reference in a new issue