-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.alacritty.toml
95 lines (76 loc) · 1.62 KB
/
.alacritty.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
[colors.bright]
black = "#002b36"
blue = "#839496"
cyan = "#93a1a1"
green = "#586e75"
magenta = "#6c71c4"
red = "#cb4b16"
white = "#fdf6e3"
yellow = "#657b83"
[colors.cursor]
cursor = "#657b83"
text = "#fdf6e3"
[colors.normal]
black = "#073642"
blue = "#268bd2"
cyan = "#2aa198"
green = "#859900"
magenta = "#d33682"
red = "#dc322f"
white = "#eee8d5"
yellow = "#b58900"
[colors.primary]
background = "#fdf6e3"
foreground = "#657b83"
[env]
TERM = "xterm-256color"
[font]
size = 20.0
[font.bold]
family = "FiraCode Nerd Font Mono"
style = "Bold"
[font.bold_italic]
family = "FiraCode Nerd Font Mono"
style = "Bold Italic"
[font.glyph_offset]
x = 0
y = 0
[font.italic]
family = "FiraCode Nerd Font Mono"
style = "Italic"
[font.normal]
family = "FiraCode Nerd Font Mono"
style = "Regular"
[font.offset]
x = 1
y = 0
[[hints.enabled]]
command = "open"
hyperlinks = true
post_processing = true
regex = "(ipfs:|ipns:|magnet:|mailto:|gemini:|gopher:|https:|http:|news:|file:|git:|ssh:|ftp:)[^\u0000-\u001F\u007F-<>\"\\s{-}\\^⟨⟩`]+"
[hints.enabled.binding]
key = "U"
mods = "Control|Shift"
[hints.enabled.mouse]
enabled = true
mods = "Command"
[keyboard]
bindings = [
#{ action = "None", key = "F", mods = "Command" }
# # Disable Cmd-W and Cmd-Q to prevent accidental exit
{ key = "Q", mods = "Command", action = "None" },
{ key = "W", mods = "Command", action = "None" },
]
[scrolling]
history = 100000
[shell]
# Good bye, tmux
#args = ["-l", "-c", "source ~/.zshrc; tmux attach 2> /dev/null || tmux"]
program = "/bin/zsh"
args = ["-l"]
[window]
option_as_alt = "Both"
decorations = "Buttonless"
[selection]
save_to_clipboard = true