Skip to content

Commit

Permalink
alacritty: Migrate to toml
Browse files Browse the repository at this point in the history
  • Loading branch information
evanpurkhiser committed Jan 8, 2024
1 parent 8b899a3 commit 5a6b74d
Show file tree
Hide file tree
Showing 5 changed files with 74 additions and 338 deletions.
51 changes: 51 additions & 0 deletions common/platform-osx/alacritty/alacritty.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
import = ["/Users/evan/.config/alacritty/themes/gruvbox-dark.toml"]
live_config_reload = true

[shell]
args = ["--login"]
program = "/opt/homebrew/bin/bash"

[env]
SHELL = "/opt/homebrew/bin/bash"
TERM = "alacritty-direct"

[colors]
draw_bold_text_with_bright_colors = true

[window]
decorations = "full"
option_as_alt = "Both"

[window.padding]
x = 2
y = 0

[font]
size = 12.0

[font.normal]
family = "CaskaydiaCove Nerd Font"
style = "Regular"

[font.bold]
family = "CaskaydiaCove Nerd Font"
style = "SemiBold"

[font.italic]
family = "CaskaydiaCove Nerd Font"
style = "Italic"

[font.glyph_offset]
x = 0
y = 0

[font.offset]
x = 0
y = 0

[selection]
semantic_escape_chars = ",│`|:\"' ()[]{}<>"

[bell]
animation = "EaseOutExpo"
duration = 0
293 changes: 0 additions & 293 deletions common/platform-osx/alacritty/alacritty.yml

This file was deleted.

23 changes: 23 additions & 0 deletions common/platform-osx/alacritty/themes/gruvbox-dark.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
[colors.primary]
background = "0x282828"
foreground = "0xebdbb2"

[colors.normal]
black = "0x282828"
blue = "0x458588"
cyan = "0x689d6a"
green = "0x98971a"
magenta = "0xb16286"
red = "0xcc241d"
white = "0xa89984"
yellow = "0xd79921"

[colors.bright]
black = "0x928374"
blue = "0x83a598"
cyan = "0x8ec07c"
green = "0xb8bb26"
magenta = "0xd3869b"
red = "0xfb4934"
white = "0xebdbb2"
yellow = "0xfabd2f"
22 changes: 0 additions & 22 deletions common/platform-osx/alacritty/themes/gruvbox-dark.yml

This file was deleted.

0 comments on commit 5a6b74d

Please sign in to comment.