diff options
Diffstat (limited to 'alacritty')
-rw-r--r-- | alacritty/.config/alacritty/alacritty.yml | 96 |
1 files changed, 66 insertions, 30 deletions
diff --git a/alacritty/.config/alacritty/alacritty.yml b/alacritty/.config/alacritty/alacritty.yml index 21ee0f5..85e940b 100644 --- a/alacritty/.config/alacritty/alacritty.yml +++ b/alacritty/.config/alacritty/alacritty.yml | |||
@@ -1,51 +1,87 @@ | |||
1 | # Colors (Ayu Dark) | ||
2 | colors: | 1 | colors: |
3 | # Default colors | 2 | # Default colors |
4 | primary: | 3 | primary: |
5 | background: '0x0A0E14' | 4 | background: "#000000" |
6 | foreground: '0xB3B1AD' | 5 | foreground: "#D8DEE9" |
7 | 6 | ||
8 | # Normal colors | 7 | # Normal colors |
9 | normal: | 8 | normal: |
10 | black: '0x01060E' | 9 | black: "#3B4252" |
11 | red: '0xEA6C73' | 10 | red: "#BF616A" |
12 | green: '0x91B362' | 11 | green: "#A3BE8C" |
13 | yellow: '0xF9AF4F' | 12 | yellow: "#EBCB8B" |
14 | blue: '0x53BDFA' | 13 | blue: "#81A1C1" |
15 | magenta: '0xFAE994' | 14 | magenta: "#B48EAD" |
16 | cyan: '0x90E1C6' | 15 | cyan: "#88C0D0" |
17 | white: '0xC7C7C7' | 16 | white: "#abb2bf" |
18 | 17 | ||
19 | # Bright colors | 18 | # Bright colors |
20 | bright: | 19 | bright: |
21 | black: '0x686868' | 20 | black: "#5c6370" |
22 | red: '0xF07178' | 21 | red: "#e06c75" |
23 | green: '0xC2D94C' | 22 | green: "#98c379" |
24 | yellow: '0xFFB454' | 23 | yellow: "#d19a66" |
25 | blue: '0x59C2FF' | 24 | blue: "#61afef" |
26 | magenta: '0xFFEE99' | 25 | magenta: "#c678dd" |
27 | cyan: '0x95E6CB' | 26 | cyan: "#56b6c2" |
28 | white: '0xFFFFFF' | 27 | white: "#ECEFF4" |
28 | |||
29 | background_opacity: 1.0 | ||
29 | 30 | ||
30 | font: | 31 | font: |
31 | # Normal (roman) font face | ||
32 | normal: | 32 | normal: |
33 | # Font family | 33 | family: "ASM-Regular" |
34 | # | ||
35 | # Default: | ||
36 | # - (macOS) Menlo | ||
37 | # - (Linux) monospace | ||
38 | # - (Windows) Consolas | ||
39 | family: 'Hermit' | ||
40 | |||
41 | # The `style` can be specified to pick a specific face. | ||
42 | style: Regular | 34 | style: Regular |
35 | bold: | ||
36 | family: "ASM-Bold" | ||
37 | style: Bold | ||
38 | italic: | ||
39 | family: "ASM-RegularItalic" | ||
40 | style: Italic | ||
41 | bold_italic: | ||
42 | family: "ASM-BoldItalic" | ||
43 | style: Bold Italic | ||
43 | 44 | ||
44 | # Point size | 45 | # Point size |
45 | size: 8.5 | 46 | size: 9.0 |
47 | antialias: true | ||
48 | autohint: true | ||
46 | 49 | ||
47 | offset: | 50 | offset: |
48 | x: 0 | 51 | x: 0 |
49 | y: 0 | 52 | y: 0 |
53 | glyph_offset: | ||
54 | x: 0 | ||
55 | y: 0 | ||
56 | |||
57 | window: | ||
58 | padding: | ||
59 | x: 8 | ||
60 | y: 8 | ||
61 | |||
62 | scrolling: | ||
63 | # Maximum number of lines in the scrollback buffer. | ||
64 | # Specifying '0' will disable scrolling. | ||
65 | history: 10000 | ||
66 | |||
67 | # Number of lines the viewport will move for every line scrolled when | ||
68 | # scrollback is enabled (history > 0). | ||
69 | multiplier: 10 | ||
70 | |||
71 | # If `true`, bold text is drawn using the bright color variants. | ||
72 | draw_bold_text_with_bright_colors: true | ||
73 | |||
74 | selection: | ||
75 | semantic_escape_chars: ',│`|:"'' ()[]{}<>' | ||
76 | save_to_clipboard: true | ||
50 | 77 | ||
78 | live_config_reload: true | ||
51 | 79 | ||
80 | key_bindings: | ||
81 | - { key: V, mods: Control|Shift, action: Paste } | ||
82 | - { key: C, mods: Control|Shift, action: Copy } | ||
83 | - { key: Key0, mods: Control, action: ResetFontSize } | ||
84 | - { key: Equals, mods: Control, action: IncreaseFontSize } | ||
85 | - { key: Add, mods: Control, action: IncreaseFontSize } | ||
86 | - { key: Subtract, mods: Control, action: DecreaseFontSize } | ||
87 | - { key: Minus, mods: Control, action: DecreaseFontSize } | ||