diff options
Diffstat (limited to 'alacritty')
-rwxr-xr-x | alacritty/.config/alacritty/alacritty.yml | 87 |
1 files changed, 0 insertions, 87 deletions
diff --git a/alacritty/.config/alacritty/alacritty.yml b/alacritty/.config/alacritty/alacritty.yml deleted file mode 100755 index 4f1f14f..0000000 --- a/alacritty/.config/alacritty/alacritty.yml +++ /dev/null | |||
@@ -1,87 +0,0 @@ | |||
1 | colors: | ||
2 | # Default colors | ||
3 | primary: | ||
4 | background: '0x171a1f' | ||
5 | foreground: '0xFFFFFF' | ||
6 | |||
7 | # Normal colors | ||
8 | normal: | ||
9 | black: '0x171a1f' | ||
10 | red: '0xEE4F84' | ||
11 | green: '0x53E2AE' | ||
12 | yellow: '0xF1FF52' | ||
13 | blue: '0x6498EF' | ||
14 | magenta: '0x985EFF' | ||
15 | cyan: '0x24D1E7' | ||
16 | white: '0xE5E5E5' | ||
17 | |||
18 | # Bright colors | ||
19 | bright: | ||
20 | black: '0x20242a' | ||
21 | red: '0xF48FB1' | ||
22 | green: '0xA1EFD3' | ||
23 | yellow: '0xF1FA8C' | ||
24 | blue: '0x92B6F4' | ||
25 | magenta: '0xBD99FF' | ||
26 | cyan: '0x87DFEB' | ||
27 | white: '0xF8F8F2' | ||
28 | |||
29 | background_opacity: 1.0 | ||
30 | |||
31 | font: | ||
32 | normal: | ||
33 | family: "SF Mono" | ||
34 | style: Medium | ||
35 | bold: | ||
36 | family: "SF Mono" | ||
37 | style: Bold | ||
38 | italic: | ||
39 | family: "SF Mono" | ||
40 | style: Italic | ||
41 | |||
42 | # Point size | ||
43 | size: 11.5 | ||
44 | antialias: true | ||
45 | autohint: true | ||
46 | lcdfiler: lcddefault | ||
47 | rgba: rgb | ||
48 | |||
49 | offset: | ||
50 | x: 1 | ||
51 | y: 1 | ||
52 | glyph_offset: | ||
53 | x: 0 | ||
54 | y: 0 | ||
55 | |||
56 | window: | ||
57 | padding: | ||
58 | x: 8 | ||
59 | y: 8 | ||
60 | |||
61 | cursor: | ||
62 | # - ▇ Block | ||
63 | # - _ Underline | ||
64 | # - | Beam | ||
65 | style: Block | ||
66 | |||
67 | scrolling: | ||
68 | # Maximum number of lines in the scrollback buffer. | ||
69 | # Specifying '0' will disable scrolling. | ||
70 | history: 10000 | ||
71 | |||
72 | # Number of lines the viewport will move for every line scrolled when | ||
73 | # scrollback is enabled (history > 0). | ||
74 | multiplier: 10 | ||
75 | |||
76 | # If `true`, bold text is drawn using the bright color variants. | ||
77 | draw_bold_text_with_bright_colors: true | ||
78 | |||
79 | selection: | ||
80 | semantic_escape_chars: ',│`|:"'' ()[]{}<>' | ||
81 | save_to_clipboard: true | ||
82 | |||
83 | live_config_reload: true | ||
84 | |||
85 | key_bindings: | ||
86 | - { key: V, mods: Control|Alt, action: Paste } | ||
87 | - { key: C, mods: Control|Alt, action: Copy } | ||