init
This commit is contained in:
@@ -0,0 +1,143 @@
|
||||
[general]
|
||||
import = ["~/.config/alacritty/colors.toml"]
|
||||
live_config_reload = true
|
||||
working_directory = "None"
|
||||
|
||||
[env]
|
||||
TERM = "xterm-256color"
|
||||
WINIT_X11_SCALE_FACTOR = "1"
|
||||
|
||||
[window]
|
||||
dynamic_padding = true
|
||||
decorations = "full"
|
||||
title = "Alacritty@fedora"
|
||||
opacity = 0.8
|
||||
decorations_theme_variant = "Dark"
|
||||
|
||||
[window.dimensions]
|
||||
columns = 100
|
||||
lines = 30
|
||||
|
||||
[window.class]
|
||||
instance = "Alacritty"
|
||||
general = "Alacritty"
|
||||
|
||||
[scrolling]
|
||||
history = 10000
|
||||
multiplier = 3
|
||||
|
||||
[font]
|
||||
size = 12
|
||||
|
||||
[font.normal]
|
||||
family = "monospace"
|
||||
style = "Regular"
|
||||
|
||||
[font.bold]
|
||||
family = "monospace"
|
||||
style = "Bold"
|
||||
|
||||
[font.italic]
|
||||
family = "monospace"
|
||||
style = "Italic"
|
||||
|
||||
[font.bold_italic]
|
||||
family = "monospace"
|
||||
style = "Bold Italic"
|
||||
|
||||
[selection]
|
||||
semantic_escape_chars = ",│`|:\"' ()[]{}<>\t"
|
||||
save_to_clipboard = true
|
||||
|
||||
[cursor]
|
||||
unfocused_hollow = true
|
||||
thickness = 0.15
|
||||
|
||||
[cursor.style]
|
||||
shape = "Beam"
|
||||
blinking = "Always"
|
||||
|
||||
[cursor.vi_mode_style]
|
||||
shape = "Block"
|
||||
|
||||
[mouse]
|
||||
hide_when_typing = true
|
||||
|
||||
[[mouse.bindings]]
|
||||
mouse = "Middle"
|
||||
action = "PasteSelection"
|
||||
|
||||
# Keybindings
|
||||
[[keyboard.bindings]]
|
||||
key = "Paste"
|
||||
action = "Paste"
|
||||
|
||||
[[keyboard.bindings]]
|
||||
key = "Copy"
|
||||
action = "Copy"
|
||||
|
||||
[[keyboard.bindings]]
|
||||
key = "L"
|
||||
mods = "Control"
|
||||
action = "ClearLogNotice"
|
||||
|
||||
[[keyboard.bindings]]
|
||||
key = "L"
|
||||
mods = "Control"
|
||||
mode = "~Vi"
|
||||
chars = "\u000c"
|
||||
|
||||
[[keyboard.bindings]]
|
||||
key = "PageUp"
|
||||
mods = "Shift"
|
||||
mode = "~Alt"
|
||||
action = "ScrollPageUp"
|
||||
|
||||
[[keyboard.bindings]]
|
||||
key = "PageDown"
|
||||
mods = "Shift"
|
||||
mode = "~Alt"
|
||||
action = "ScrollPageDown"
|
||||
|
||||
[[keyboard.bindings]]
|
||||
key = "Home"
|
||||
mods = "Shift"
|
||||
mode = "~Alt"
|
||||
action = "ScrollToTop"
|
||||
|
||||
[[keyboard.bindings]]
|
||||
key = "End"
|
||||
mods = "Shift"
|
||||
mode = "~Alt"
|
||||
action = "ScrollToBottom"
|
||||
|
||||
[[keyboard.bindings]]
|
||||
key = "V"
|
||||
mods = "Control|Shift"
|
||||
action = "Paste"
|
||||
|
||||
[[keyboard.bindings]]
|
||||
key = "C"
|
||||
mods = "Control|Shift"
|
||||
action = "Copy"
|
||||
|
||||
[[keyboard.bindings]]
|
||||
key = "F"
|
||||
mods = "Control|Shift"
|
||||
action = "SearchForward"
|
||||
|
||||
[[keyboard.bindings]]
|
||||
key = "B"
|
||||
mods = "Control|Shift"
|
||||
action = "SearchBackward"
|
||||
|
||||
[[keyboard.bindings]]
|
||||
key = "C"
|
||||
mods = "Control|Shift"
|
||||
mode = "Vi"
|
||||
action = "ClearSelection"
|
||||
|
||||
[[keyboard.bindings]]
|
||||
key = "0"
|
||||
mods = "Control"
|
||||
action = "ResetFontSize"
|
||||
@@ -0,0 +1,32 @@
|
||||
[colors.primary]
|
||||
background = '#1d1010'
|
||||
foreground = '#f8dcdc'
|
||||
dim_foreground = '#dbc0c0'
|
||||
|
||||
[colors.cursor]
|
||||
text = '#1d1010'
|
||||
cursor = '#ffb3b5'
|
||||
|
||||
[cursor]
|
||||
style = { shape = "Block", blinking = "Always" }
|
||||
vi_mode_style = { shape = "Block" }
|
||||
|
||||
[colors.normal]
|
||||
black = '#2b1c1c'
|
||||
red = '#ffb4ab'
|
||||
green = '#ffb3b5'
|
||||
yellow = '#6b3a17'
|
||||
blue = '#f5b8a7'
|
||||
magenta = '#ffb78a'
|
||||
cyan = '#920025'
|
||||
white = '#f8dcdc'
|
||||
|
||||
[colors.bright]
|
||||
black = '#362626'
|
||||
red = '#93000a'
|
||||
green = '#be0034'
|
||||
yellow = '#ffdbc8'
|
||||
blue = '#ffdbd1'
|
||||
magenta = '#502503'
|
||||
cyan = '#ffdada'
|
||||
white = '#f8dcdc'
|
||||
Reference in New Issue
Block a user