Skip to content

Commit

Permalink
refactor: convert .alacritty.yaml => .alacritty.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
bdossantos committed Jan 12, 2024
1 parent 27ceff0 commit 80d1cd3
Show file tree
Hide file tree
Showing 2 changed files with 117 additions and 80 deletions.
117 changes: 117 additions & 0 deletions .alacritty.toml
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
80 changes: 0 additions & 80 deletions .alacritty.yml

This file was deleted.

0 comments on commit 80d1cd3

Please sign in to comment.