added alacritty
This commit is contained in:
parent
736dc5fd28
commit
0cd2d99d7d
1 changed files with 169 additions and 0 deletions
169
alacritty/.config/alacritty/alacritty.toml
Normal file
169
alacritty/.config/alacritty/alacritty.toml
Normal file
|
@ -0,0 +1,169 @@
|
||||||
|
|
||||||
|
[env]
|
||||||
|
TERM = "alacritty"
|
||||||
|
|
||||||
|
[window]
|
||||||
|
decorations = "none"
|
||||||
|
dynamic_padding = false
|
||||||
|
dynamic_title = true
|
||||||
|
opacity = 1.0
|
||||||
|
startup_mode = "Maximized"
|
||||||
|
title = "Alacritty"
|
||||||
|
|
||||||
|
[window.dimensions]
|
||||||
|
columns = 0
|
||||||
|
lines = 0
|
||||||
|
|
||||||
|
[window.padding]
|
||||||
|
x = 12
|
||||||
|
y = 12
|
||||||
|
|
||||||
|
[scrolling]
|
||||||
|
history = 100000
|
||||||
|
|
||||||
|
[font]
|
||||||
|
builtin_box_drawing = false
|
||||||
|
size = 10
|
||||||
|
|
||||||
|
[font.bold]
|
||||||
|
family = "Intel One Mono"
|
||||||
|
style = "Bold"
|
||||||
|
|
||||||
|
[font.bold_italic]
|
||||||
|
family = "Intel One Mono"
|
||||||
|
style = "Bold Italic"
|
||||||
|
|
||||||
|
[font.glyph_offset]
|
||||||
|
x = 0
|
||||||
|
y = 0
|
||||||
|
|
||||||
|
[font.italic]
|
||||||
|
family = "Intel One Mono"
|
||||||
|
style = "Italic"
|
||||||
|
|
||||||
|
[font.normal]
|
||||||
|
family = "Intel One Mono"
|
||||||
|
style = "Regular"
|
||||||
|
|
||||||
|
[font.offset]
|
||||||
|
x = 0
|
||||||
|
y = 0
|
||||||
|
|
||||||
|
[colors.primary]
|
||||||
|
background = "#2e3440"
|
||||||
|
foreground = "#d8dee9"
|
||||||
|
|
||||||
|
[colors.bright]
|
||||||
|
black = "#4c566a"
|
||||||
|
blue = "#81a1c1"
|
||||||
|
cyan = "#8fbcbb"
|
||||||
|
green = "#a3be8c"
|
||||||
|
magenta = "#b48ead"
|
||||||
|
red = "#bf616a"
|
||||||
|
white = "#eceff4"
|
||||||
|
yellow = "#ebcb8b"
|
||||||
|
|
||||||
|
[colors.cursor]
|
||||||
|
cursor = "CellForeground"
|
||||||
|
text = "CellBackground"
|
||||||
|
|
||||||
|
[colors.footer_bar]
|
||||||
|
background = "#434c5e"
|
||||||
|
foreground = "#d8dee9"
|
||||||
|
|
||||||
|
[colors.hints.end]
|
||||||
|
background = "CellBackground"
|
||||||
|
foreground = "CellForeground"
|
||||||
|
|
||||||
|
[colors.hints.start]
|
||||||
|
background = "CellBackground"
|
||||||
|
foreground = "CellForeground"
|
||||||
|
|
||||||
|
[colors.line_indicator]
|
||||||
|
background = "None"
|
||||||
|
foreground = "None"
|
||||||
|
|
||||||
|
[colors.normal]
|
||||||
|
black = "#3b4252"
|
||||||
|
blue = "#81a1c1"
|
||||||
|
cyan = "#88c0d0"
|
||||||
|
green = "#a3be8c"
|
||||||
|
magenta = "#b48ead"
|
||||||
|
red = "#bf616a"
|
||||||
|
white = "#e5e9f0"
|
||||||
|
yellow = "#ebcb8b"
|
||||||
|
|
||||||
|
[colors.search.focused_match]
|
||||||
|
background = "CellBackground"
|
||||||
|
foreground = "CellForeground"
|
||||||
|
|
||||||
|
[colors.search.matches]
|
||||||
|
background = "CellBackground"
|
||||||
|
foreground = "CellForeground"
|
||||||
|
|
||||||
|
[colors.selection]
|
||||||
|
background = "CellForeground"
|
||||||
|
text = "CellBackground"
|
||||||
|
|
||||||
|
[colors.vi_mode_cursor]
|
||||||
|
cursor = "CellForeground"
|
||||||
|
text = "CellBackground"
|
||||||
|
|
||||||
|
[bell]
|
||||||
|
animation = "EaseOutExpo"
|
||||||
|
color = "#C0C5CE"
|
||||||
|
command = "None"
|
||||||
|
duration = 0
|
||||||
|
|
||||||
|
[selection]
|
||||||
|
save_to_clipboard = false
|
||||||
|
semantic_escape_chars = ",│`|:\"' ()[]{}<>\t"
|
||||||
|
|
||||||
|
[cursor]
|
||||||
|
unfocused_hollow = true
|
||||||
|
vi_mode_style = "None"
|
||||||
|
|
||||||
|
[[keyboard.bindings]]
|
||||||
|
action = "Paste"
|
||||||
|
key = "V"
|
||||||
|
mods = "Control|Shift"
|
||||||
|
|
||||||
|
[[keyboard.bindings]]
|
||||||
|
action = "Copy"
|
||||||
|
key = "C"
|
||||||
|
mods = "Control|Shift"
|
||||||
|
|
||||||
|
[[keyboard.bindings]]
|
||||||
|
action = "ScrollPageUp"
|
||||||
|
key = "PageUp"
|
||||||
|
mods = "Shift"
|
||||||
|
|
||||||
|
[[keyboard.bindings]]
|
||||||
|
action = "ScrollPageDown"
|
||||||
|
key = "PageDown"
|
||||||
|
mods = "Shift"
|
||||||
|
|
||||||
|
[[keyboard.bindings]]
|
||||||
|
action = "ScrollToTop"
|
||||||
|
key = "Home"
|
||||||
|
mods = "Shift"
|
||||||
|
|
||||||
|
[[keyboard.bindings]]
|
||||||
|
action = "ScrollToBottom"
|
||||||
|
key = "End"
|
||||||
|
mods = "Shift"
|
||||||
|
|
||||||
|
[mouse]
|
||||||
|
hide_when_typing = true
|
||||||
|
|
||||||
|
[debug]
|
||||||
|
highlight_damage = false
|
||||||
|
log_level = "Warn"
|
||||||
|
persistent_logging = false
|
||||||
|
print_events = false
|
||||||
|
render_timer = false
|
||||||
|
|
||||||
|
[general]
|
||||||
|
# alacritty.toml
|
||||||
|
|
||||||
|
live_config_reload = true
|
Loading…
Reference in a new issue