-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathalacritty.toml
More file actions
95 lines (78 loc) · 2.4 KB
/
alacritty.toml
File metadata and controls
95 lines (78 loc) · 2.4 KB
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
[general]
import = [
# theme repo: https://github.com/alacritty/alacritty-theme
# "~/.config/alacritty/themes/themes/catppuccin_mocha.toml"
# copy the theme file content and place at root with alacritty.toml instead
# of hardcoded like above, help change theme local easier
"~/.config/alacritty/current.toml"
]
# Font configuration
[font.normal]
# family = "AnonymiceProNerdFont"
family = "CodeNewRoman Nerd Font Mono"
style = "Regular"
# [font.italic]
# # family = "AnonymiceProNerdFont"
# family = "CodeNewRomanNerdFont"
# style = "Italic"
# [font.bold]
# # family = "AnonymiceProNerdFont"
# family = "CodeNewRomanNerdFont"
# style = "Bold"
# font size
[font]
size = 15
[env]
TERM = "xterm-256color"
[selection]
# When set to true, selected text will be copied to the primary clipboard.
save_to_clipboard = true
[window]
# Dynamic Spread additional padding evenly around the terminal content.
dynamic_padding = true
# Window decorations
#
# Available values:
# - full: borders and title bar
# - none: neither borders nor title bar
# - transparent: title bar, transparent background and title bar buttons
# - buttonless: title bar, transparent background, but no title bar buttons
decorations = "none"
# Startup Mode (changes require restart)
#
# Values for `startup_mode`:
# - Windowed
# - Maximized
# - Fullscreen
#
# Values for `startup_mode` (macOS only):
# - SimpleFullscreen
startup_mode = "Maximized"
# background opacity
# change with scroll title bar instead
# because of neovim won't be transparent all at
opacity = 0.92
[colors]
# make nvim also transparent
transparent_background_colors = true
# [window.dimensions]
# Window dimensions (changes require restart)
#
# Specified in number of columns/lines, not pixels. If both are zero this
# setting is ignored.
# columns = 100
# lines = 85
# [window.padding]
# Window padding (changes require restart)
#
# Blank space added around the window in pixels. This padding is not scaled
# by DPI and the specified value is always added at both opposing sides.
# x = 0
# y = 0
[scrolling]
# maximum number of lines in the scrollback buffer. Specifying '0' will
# disable scrolling.
history = 10000
# Number of lines the viewport will move for every line scrolled when
# scrollback is enabled (history > 0).
multiplier = 3