Skip to content

Commit

Permalink
refactor(alacritty): upgrade config from yml to toml
Browse files Browse the repository at this point in the history
  • Loading branch information
scottames committed Nov 16, 2024
1 parent d7d7e3f commit 8fc2762
Show file tree
Hide file tree
Showing 2 changed files with 48 additions and 31 deletions.
31 changes: 0 additions & 31 deletions home/private_dot_config/alacritty/alacritty.yml

This file was deleted.

48 changes: 48 additions & 0 deletions home/private_dot_config/alacritty/private_alacritty.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
[[keyboard.bindings]]
action = "SpawnNewInstance"
key = "Return"
mods = "Control|Shift"

[general]
import = ["~/.config/alacritty/catppuccin/catppuccin-mocha.toml"]

[terminal]

[env]
TERM = "xterm-256color"

[font]
size = 14

[font.bold]
family = "FiraCode Nerd Font Mono"
style = "Bold"

[font.bold_italic]
family = "FiraCode Nerd Font Mono"
style = "Bold Italic"

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

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

[terminal.shell]
program = "/usr/bin/fish"
args = ["-l"]

[window]
decorations = "none"
opacity = 0.9

[window.padding]
x = 5
y = 0

[colors]
draw_bold_text_with_bright_colors = true

[keyboard]

0 comments on commit 8fc2762

Please sign in to comment.