-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathalacritty_nix.toml
95 lines (77 loc) · 1.57 KB
/
alacritty_nix.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
#terminal.shell = "pwsh"
#general.working_directory = "/Users/daniel.backman"
general.live_config_reload = true
[window]
padding = { x = 10, y = 10 }
decorations = "Full"
#decorations = "None"
title = "Alacritty"
dynamic_title = false
opacity = 0.8
blur = true
startup_mode = "Windowed"
[terminal]
[terminal.shell]
program = "pwsh"
#args = ["-?"]
[font]
size = 13
[font.bold]
family = "Source Code Pro"
style = "Bold"
[font.bold_italic]
family = "Source Code Pro"
style = "Bold Italic"
[font.italic]
family = "Source Code Pro"
style = "Italic"
[font.normal]
family = "Source Code Pro"
style = "Regular"
[font.offset]
x = 0
y = 0
[colors]
[colors.primary]
background = "#282828"
foreground = "#ebdbb2"
[colors.normal]
black = "#282828"
blue = "#458588"
cyan = "#689d6a"
green = "#98971a"
magenta = "#b16286"
red = "#cc241d"
yellow = "#d79921"
white = "#a89984"
[colors.bright]
black = '#928374'
blue = '#83a598'
cyan = '#8ec07c'
green = '#b8bb26'
magenta = '#d3869b'
red = '#fb4934'
yellow = '#fabd2f'
white = '#ebdbb2'
[colors.selection]
background = "#d65d0e"
text = "CellForeground"
[colors.cursor]
cursor = "#d65d0e"
text = "CellBackground"
[selection]
save_to_clipboard = true
[cursor]
style = { shape = "Block", blinking = "Always" }
unfocused_hollow = true
[mouse]
hide_when_typing = true
bindings = [
{ mouse = "Right", action = "Paste" },
]
[keyboard]
bindings = [
#{ key = "V", mods = "Control", action = "Paste" },
#{ key = "C", mods = "Control", action = "Copy" },
{ key = "Key0", mods = "Control", action = "ResetFontSize" },
]