-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathalacritty.toml
105 lines (82 loc) · 2.11 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
96
97
98
99
100
101
102
103
104
105
## IMPORT will load these in order that they are imported
## Using the import to load color themes
## Using full path to the config folder as it doesn't like symlinks or relative paths
[general]
import = [
# "/Users/ktruesdell/.nvm/versions/node/v20.11.0/lib/node_modules/alacritty-themes/themes/Kitty.toml",
# "~/.config/alacritty/alacritty-theme/themes/afterglow.toml"
# "~/.config/alacritty/alacritty-theme/themes/alabaster_dark.toml"
# "~/.config/alacritty/alacritty-theme/themes/ayu_dark.toml"
"~/.config/alacritty/alacritty-theme/themes/hyper.toml"
# "~/.config/alacritty/alacritty-theme/themes/terminal_app.toml"
# "~/.config/alacritty/alacritty-theme/themes/chicago95.toml"
]
## NOTE: This produces a TON of messages at the botton and only way to dismiss them is to use the mouse and click the X box
live_config_reload = true
[env]
TERM = "xterm-256color"
[window]
dynamic_padding = true
decorations = "None"
startup_mode = "Maximized"
option_as_alt = "Both"
decorations_theme_variant = "None"
opacity = 0.85
blur = true # false
[window.padding]
x = 0
y = 0
[font]
size = 13
[font.normal]
family = "FiraMono Nerd Font"
# [colors.primary]
# foreground = "#ffffff"
# background = "#000000"
# [colors.normal]
# black = "#000000"
[bell]
animation = "Linear"
[[keyboard.bindings]]
key = "w"
mods = "Control|Command"
chars = "acw"
[[keyboard.bindings]]
key = "p"
mods = "Control|Command"
chars = "anp"
[[keyboard.bindings]]
key = "s"
mods = "Control|Command"
chars = "sourcer"
## NOTE: This does not work in alacritty - want to get this to work for vim keybindings
[[keyboard.bindings]]
chars = "\u001B[13;2u"
key = "Return"
mods = "Shift"
[[keyboard.bindings]]
chars = "\u001B[13;5u"
key = "Return"
mods = "Control"
[[keyboard.bindings]]
key = "N"
mods = "Command"
action = "SpawnNewInstance"
[[keyboard.bindings]]
key = "Q"
mods = "Command"
action = "Quit"
[[keyboard.bindings]]
key = "W"
mods = "Command"
action = "Quit"
[[keyboard.bindings]]
key = "F"
mods = "Command|Control"
action = "ToggleFullscreen"
[cursor.style]
shape = "Beam"
blinking = "On"
[cursor.vi_mode_style]
shape = "Beam"
blinking = "On"