summaryrefslogtreecommitdiff
path: root/alacritty/.config
diff options
context:
space:
mode:
authorShubham Saini <pryr@pryr.xyz>2021-05-22 12:56:08 +0000
committerShubham Saini <pryr@pryr.xyz>2021-05-22 12:56:08 +0000
commitbde9d8e1c9a6e2213fc7d40298d43a14f2e99359 (patch)
tree548d45ecb1ada0be5a099ea8b0879c82e08560d7 /alacritty/.config
parent4d6de10a92b0264a1cebfbe813d2e7961ef29c2b (diff)
cleaned the repo
Diffstat (limited to 'alacritty/.config')
-rwxr-xr-xalacritty/.config/alacritty/alacritty.yml87
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 @@
1colors:
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
29background_opacity: 1.0
30
31font:
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
56window:
57 padding:
58 x: 8
59 y: 8
60
61cursor:
62 # - ▇ Block
63 # - _ Underline
64 # - | Beam
65 style: Block
66
67scrolling:
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.
77draw_bold_text_with_bright_colors: true
78
79selection:
80 semantic_escape_chars: ',│`|:"'' ()[]{}<>'
81 save_to_clipboard: true
82
83live_config_reload: true
84
85key_bindings:
86 - { key: V, mods: Control|Alt, action: Paste }
87 - { key: C, mods: Control|Alt, action: Copy }