-
Notifications
You must be signed in to change notification settings - Fork 0
/
.alacritty.toml
62 lines (54 loc) · 2.66 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
[terminal]
shell = { program = "/bin/zsh", args = ["--login"] }
[env]
TERM = "xterm-256color"
[window]
opacity = 0.95
dynamic_title = true
decorations = "Full"
startup_mode = "Windowed"
dimensions = { columns = 140, lines = 38 }
[scrolling]
history = 50000
[font]
normal = { family = "Fira Code", style = "Regular" }
bold = { family = "Fira Code", style = "Bold" }
[cursor]
style = { shape = "Block", blinking = "Off" }
thickness = 0.15
# Colors (Rosé Pine Theme)
[colors]
draw_bold_text_with_bright_colors = true
primary = { background = "#1E1E3F", foreground = "#FFFFFF" }
cursor = { text = "#1E1E3F", cursor = "#FAD000" }
vi_mode_cursor = { text = "0xe0def4", cursor = "0x524f67" }
line_indicator = { foreground = "None", background = "None" }
selection = { text = "0xe0def4", background = "0x403d52" }
normal = { black = "#000000", red = "#D52822", green = "#3DB72A", yellow = "#FAD000", blue = "#6943FF", magenta = "#FF628C", cyan = "#9EFFFF", white = "#DBDBE0" }
bright = { black = "#5C5C61", red = "#FF000D", green = "#3AD900", yellow = "#FAD000", blue = "#6943FF", magenta = "#FF628C", cyan = "#9EFFFF", white = "#FFFFFF" }
[colors.hints]
start = { foreground = "#908caa", background = "#1f1d2e" }
end = { foreground = "#6e6a86", background = "#1f1d2e" }
[keyboard]
bindings = [
{ key = "K", mods = "Command", mode = "~Vi|~Search", chars = "x0c" },
{ key = "K", mods = "Command", mode = "~Vi|~Search", action = "ClearHistory" },
{ key = "Key0", mods = "Command", action = "ResetFontSize" },
{ key = "Equals", mods = "Command", action = "IncreaseFontSize" },
{ key = "Plus", mods = "Command", action = "IncreaseFontSize" },
{ key = "NumpadAdd", mods = "Command", action = "IncreaseFontSize" },
{ key = "Minus", mods = "Command", action = "DecreaseFontSize" },
{ key = "NumpadSubtract", mods = "Command", action = "DecreaseFontSize" },
{ key = "V", mods = "Command", action = "Paste" },
{ key = "C", mods = "Command", action = "Copy" },
{ key = "C", mods = "Command", mode = "Vi|~Search", action = "ClearSelection" },
{ key = "H", mods = "Command", action = "Hide" },
{ key = "H", mods = "Command|Alt", action = "HideOtherApplications" },
{ key = "M", mods = "Command", action = "Minimize" },
{ key = "Q", mods = "Command", action = "Quit" },
{ key = "W", mods = "Command", action = "Quit" },
{ key = "N", mods = "Command", action = "SpawnNewInstance" },
{ key = "F", mods = "Command|Control", action = "ToggleFullscreen" },
{ key = "F", mods = "Command", mode = "~Search", action = "SearchForward" },
{ key = "B", mods = "Command", mode = "~Search", action = "SearchBackward" }
]