diff options
| author | Jack Jamison <53350163+JackJ30@users.noreply.github.com> | 2024-11-09 14:09:38 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-11-09 14:09:38 -0500 |
| commit | 2d4198da6a59e52278255d22e7aba394b3ce1688 (patch) | |
| tree | e16ab66261797c06580679daffc13ef1b6ffd0cb /.config/alacritty/alacritty.toml | |
| parent | e70986a9c299f004aa290bde0ec430ca864f7e74 (diff) | |
| parent | ddd43ed96249932652c7427dbdbbac92e5ef49ed (diff) | |
Merge pull request #1 from JackJ30/laptop
Merge Laptop, it's my main workspace now
Diffstat (limited to '.config/alacritty/alacritty.toml')
| -rw-r--r-- | .config/alacritty/alacritty.toml | 114 |
1 files changed, 114 insertions, 0 deletions
diff --git a/.config/alacritty/alacritty.toml b/.config/alacritty/alacritty.toml new file mode 100644 index 0000000..f11c539 --- /dev/null +++ b/.config/alacritty/alacritty.toml @@ -0,0 +1,114 @@ +[colors] +draw_bold_text_with_bright_colors = false + +[colors.bright] +black = "0x565575" +blue = "0x65b2ff" +cyan = "0x63f2f1" +green = "0x62d196" +magenta = "0x906cff" +red = "0xff5458" +white = "0xa6b3cc" +yellow = "0xffb378" + +[colors.normal] +black = "0x100e23" +blue = "0x91ddff" +cyan = "0xaaffe4" +green = "0x95ffa4" +magenta = "0xc991e1" +red = "0xff8080" +white = "0xcbe3e7" +yellow = "0xffe9aa" + +[colors.primary] +background = "0x1b182c" +foreground = "0xcbe3e7" + +[cursor.style] +blinking = "Off" +shape = "Block" + +[env] +TERM = "alacritty" + +[font] +size = 9.7 + +[font.bold] +style = "Bold" + +[font.bold_italic] +style = "Bold" + +[font.glyph_offset] +x = 0 +y = 0 + +[font.italic] +style = "Regular" + +[font.normal] +family = "DejaVu Sans Mono" +style = "Regular" + +[font.offset] +x = 0 +y = 0 + +[[keyboard.bindings]] +action = "Paste" +key = "Paste" + +[[keyboard.bindings]] +action = "Copy" +key = "Copy" + +[[keyboard.bindings]] +action = "Paste" +key = "Y" +mods = "Control" + +[[keyboard.bindings]] +action = "Copy" +key = "W" +mods = "Alt" + +[[keyboard.bindings]] +action = "ScrollLineUp" +key = "PageUp" + +[[keyboard.bindings]] +action = "ScrollLineDown" +key = "PageDown" + +[[keyboard.bindings]] +action = "ScrollHalfPageUp" +key = "PageUp" +mods = "Shift" + +[[keyboard.bindings]] +action = "ScrollHalfPageDown" +key = "PageDown" +mods = "Shift" + +[scrolling] +history = 10000 + +[window] +decorations = "full" +decorations_theme_variant = "None" +dynamic_padding = false +dynamic_title = true +opacity = 0.9 +resize_increments = false +startup_mode = "Windowed" +title = "Alacritty" + +[window.class] +general = "Alacritty" +instance = "Alacritty" + +[window.padding] +x = 0 +y = 0 |
