dev: automated commit - 2025-11-28 18:28:12

This commit is contained in:
Mariano Z. 2025-11-28 18:28:12 -03:00
parent 7024be866f
commit 023988b638
16 changed files with 341 additions and 127 deletions

View file

@ -0,0 +1,49 @@
# Alacritty Configuration
# Migrated from Ghostty configuration
# Import noctalia theme
import = ["~/.config/alacritty/themes/noctalia.toml"]
# Font configuration
[font]
size = 12.0
[font.normal]
family = "JetBrainsMono Nerd Font"
style = "Regular"
# Cursor configuration
[cursor]
style = "Block"
unfocused_hollow = true
# Window configuration
[window]
padding.x = 0
padding.y = 0
decorations = "None"
opacity = 0.989
[env]
TERM = "xterm-256color"
# Mouse configuration
[mouse]
hide_when_typing = true
# Keybindings
[[keyboard.bindings]]
key = "Equals"
mods = "Control|Shift"
action = "IncreaseFontSize"
[[keyboard.bindings]]
key = "Minus"
mods = "Control|Shift"
action = "DecreaseFontSize"
[[keyboard.bindings]]
key = "Key0"
mods = "Control|Shift"
action = "ResetFontSize"

View file

@ -0,0 +1,35 @@
# Noctalia Theme
# Migrated from Ghostty noctalia theme
[colors.primary]
background = '#212337'
foreground = '#ebfafa'
[colors.selection]
text = '#ebfafa'
background = '#bf4f8e'
[colors.cursor]
text = '#212337'
cursor = '#37f499'
[colors.normal]
black = '#21222c'
red = '#f9515d'
green = '#37f499'
yellow = '#e9f941'
blue = '#9071f4'
magenta = '#f265b5'
cyan = '#04d1f9'
white = '#ebfafa'
[colors.bright]
black = '#7081d0'
red = '#f16c75'
green = '#69F8B3'
yellow = '#f1fc79'
blue = '#a48cf2'
magenta = '#FD92CE'
cyan = '#66e4fd'
white = '#ffffff'