dots-of-war/alacritty/.config/alacritty/alacritty.yml

88 lines
3.4 KiB
YAML
Raw Normal View History

2024-04-12 18:04:32 +02:00
env:
TERM: xterm-256color
2022-02-01 10:19:10 +01:00
colors:
bright:
black: "#928374"
blue: "#83a598"
cyan: "#8ec07c"
green: "#b8bb26"
magenta: "#d3869b"
red: "#fb4934"
white: "#ebdbb2"
yellow: "#fabd2f"
normal:
2023-03-01 10:10:58 +01:00
black: "#665c54" # this is used for comments in bash, so let's make it visible...
2022-02-01 10:19:10 +01:00
blue: "#458588"
cyan: "#689d6a"
green: "#98971a"
magenta: "#b16286"
red: "#cc241d"
white: "#a89984"
yellow: "#d79921"
primary:
background: "#282828"
bg_darker: "#1d2021"
bg_lighter: "#3c3836"
foreground: "#ebdbb2"
cursor:
2023-03-01 10:10:58 +01:00
style:
2023-02-25 18:07:21 +01:00
shape: "Block"
2023-03-01 10:10:58 +01:00
blinking: "Never"
2022-02-01 10:19:10 +01:00
unfocused_hollow: true
font:
2024-04-24 12:45:29 +02:00
#normal: { "family": "FiraMono Nerd Font" }
2024-04-12 18:04:32 +02:00
#normal: { "family": "Menlo" }
2023-02-25 18:07:21 +01:00
#normal: { "family": "APL 385 Unicode" }
2024-04-24 12:45:29 +02:00
normal: { "family": "Fira Code" }
2022-04-13 18:43:59 +02:00
#normal: { "family": "Jetbrains Mono" }
2022-03-21 10:42:09 +01:00
#normal: { "family": "Victor Mono" }
#normal: { "family": "Monoid" }
#normal: { "family": "Mono Lisa" }
2022-03-23 10:37:00 +01:00
#normal: { "family": "cherry" }
#normal: { "family": "scientifica" }
#normal: { "family": "cozette" }
2023-01-16 10:15:28 +01:00
#normal: { "family": "Terminus" }
2022-02-01 10:19:10 +01:00
offset: { "x": 0, "y": 0 }
2024-04-12 18:04:32 +02:00
size: 14
2022-02-01 10:19:10 +01:00
key_bindings:
- { "action": "SpawnNewInstance", "key": "N", "mods": "Control|Shift" }
2023-03-01 10:10:58 +01:00
# let's increase font size 12 times every C-S-+, and decrease 12 times on C-S-A-+... lmao
- { "action": "IncreaseFontSize", "key": "Plus", "mods": "Control|Shift" }
- { "action": "IncreaseFontSize", "key": "Plus", "mods": "Control|Shift" }
- { "action": "IncreaseFontSize", "key": "Plus", "mods": "Control|Shift" }
- { "action": "IncreaseFontSize", "key": "Plus", "mods": "Control|Shift" }
- { "action": "IncreaseFontSize", "key": "Plus", "mods": "Control|Shift" }
- { "action": "IncreaseFontSize", "key": "Plus", "mods": "Control|Shift" }
- { "action": "IncreaseFontSize", "key": "Plus", "mods": "Control|Shift" }
- { "action": "IncreaseFontSize", "key": "Plus", "mods": "Control|Shift" }
- { "action": "IncreaseFontSize", "key": "Plus", "mods": "Control|Shift" }
- { "action": "IncreaseFontSize", "key": "Plus", "mods": "Control|Shift" }
- { "action": "IncreaseFontSize", "key": "Plus", "mods": "Control|Shift" }
- { "action": "IncreaseFontSize", "key": "Plus", "mods": "Control|Shift" }
- { "action": "DecreaseFontSize", "key": "Plus", "mods": "Control|Shift|Alt" }
- { "action": "DecreaseFontSize", "key": "Plus", "mods": "Control|Shift|Alt" }
- { "action": "DecreaseFontSize", "key": "Plus", "mods": "Control|Shift|Alt" }
- { "action": "DecreaseFontSize", "key": "Plus", "mods": "Control|Shift|Alt" }
- { "action": "DecreaseFontSize", "key": "Plus", "mods": "Control|Shift|Alt" }
- { "action": "DecreaseFontSize", "key": "Plus", "mods": "Control|Shift|Alt" }
- { "action": "DecreaseFontSize", "key": "Plus", "mods": "Control|Shift|Alt" }
- { "action": "DecreaseFontSize", "key": "Plus", "mods": "Control|Shift|Alt" }
- { "action": "DecreaseFontSize", "key": "Plus", "mods": "Control|Shift|Alt" }
- { "action": "DecreaseFontSize", "key": "Plus", "mods": "Control|Shift|Alt" }
- { "action": "DecreaseFontSize", "key": "Plus", "mods": "Control|Shift|Alt" }
- { "action": "DecreaseFontSize", "key": "Plus", "mods": "Control|Shift|Alt" }
2022-02-01 10:19:10 +01:00
live_config_reload: true
mouse:
double_click: { "threshold": 300 }
hide_when_typing: true
triple_click: { "threshold": 300 }
window:
dynamic_padding: true
dynamic_title: true
2024-04-11 11:05:54 +02:00
padding: { "x": 10, "y": 10 }
#padding: { "x": 20, "y": 20 }
2022-02-01 10:19:10 +01:00
opacity: 1