-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: convert .alacritty.yaml => .alacritty.toml
- Loading branch information
1 parent
27ceff0
commit 80d1cd3
Showing
2 changed files
with
117 additions
and
80 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,117 @@ | ||
live_config_reload = true | ||
|
||
[colors.bright] | ||
black = "#6272a4" | ||
blue = "#d6acff" | ||
cyan = "#a4ffff" | ||
green = "#69ff94" | ||
magenta = "#ff92df" | ||
red = "#ff6e6e" | ||
white = "#ffffff" | ||
yellow = "#ffffa5" | ||
|
||
[colors.cursor] | ||
cursor = "CellForeground" | ||
text = "CellBackground" | ||
|
||
[colors.footer_bar] | ||
background = "#282a36" | ||
foreground = "#f8f8f2" | ||
|
||
[colors.hints.end] | ||
background = "#282a36" | ||
foreground = "#f1fa8c" | ||
|
||
[colors.hints.start] | ||
background = "#f1fa8c" | ||
foreground = "#282a36" | ||
|
||
[colors.line_indicator] | ||
background = "None" | ||
foreground = "None" | ||
|
||
[colors.normal] | ||
black = "#21222c" | ||
blue = "#bd93f9" | ||
cyan = "#8be9fd" | ||
green = "#50fa7b" | ||
magenta = "#ff79c6" | ||
red = "#ff5555" | ||
white = "#f8f8f2" | ||
yellow = "#f1fa8c" | ||
|
||
[colors.primary] | ||
background = "#282a36" | ||
bright_foreground = "#ffffff" | ||
foreground = "#f8f8f2" | ||
|
||
[colors.search.focused_match] | ||
background = "#ffb86c" | ||
foreground = "#44475a" | ||
|
||
[colors.search.matches] | ||
background = "#50fa7b" | ||
foreground = "#44475a" | ||
|
||
[colors.selection] | ||
background = "#44475a" | ||
text = "CellForeground" | ||
|
||
[colors.vi_mode_cursor] | ||
cursor = "CellForeground" | ||
text = "CellBackground" | ||
|
||
[font] | ||
size = 13.0 | ||
|
||
[font.bold] | ||
family = "Hack Nerd Font" | ||
style = "Bold" | ||
|
||
[font.italic] | ||
family = "Hack Nerd Font" | ||
style = "Italic" | ||
|
||
[font.normal] | ||
family = "Hack Nerd Font" | ||
style = "Regular" | ||
|
||
[[keyboard.bindings]] | ||
chars = "|" | ||
key = "L" | ||
mods = "Alt|Shift" | ||
|
||
[[keyboard.bindings]] | ||
chars = "{" | ||
key = "Key5" | ||
mods = "Alt" | ||
|
||
[[keyboard.bindings]] | ||
chars = "}" | ||
key = "Minus" | ||
mods = "Alt" | ||
|
||
[[keyboard.bindings]] | ||
chars = "[" | ||
key = "Key5" | ||
mods = "Alt|Shift" | ||
|
||
[[keyboard.bindings]] | ||
chars = "]" | ||
key = "Minus" | ||
mods = "Alt|Shift" | ||
|
||
[[keyboard.bindings]] | ||
action = "ToggleFullscreen" | ||
key = "Return" | ||
mods = "Command" | ||
|
||
[window] | ||
decorations = "buttonless" | ||
dynamic_padding = true | ||
option_as_alt = "None" | ||
startup_mode = "Maximized" | ||
|
||
[window.padding] | ||
x = 5 | ||
y = 5 |
This file was deleted.
Oops, something went wrong.