Skip to content

Commit

Permalink
✨ Adding alacritty config
Browse files Browse the repository at this point in the history
  • Loading branch information
bgcicca committed Jan 20, 2025
1 parent 367a122 commit ba0b564
Showing 1 changed file with 66 additions and 0 deletions.
66 changes: 66 additions & 0 deletions .config/alacritty/alacritty.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,66 @@
[window]

opacity = 0.6

padding.x = 10
padding.y = 10

decorations = "Full"
decorations_theme_variant = "Dark"

[font]

normal.family = "JetBrains Mono"
bold.family = "JetBrains Mono"
italic.family = "JetBrains Mono"
bold_italic.family = "JetBrains Mono"

size = 15.0

[terminal]

[terminal.shell]
program = "C:\\Windows\\System32\\WindowsPowerShell\\v1.0\\powershell.exe"
args = ["-NoLogo", "-NoExit", "-Command", "Set-Location -Path 'C:\\Users\\Usuario'"]

# -----------------------------------------------------------------------------
# nekonight Alacritty Colors
# Theme: Neko Night
# Upstream: https://github.com/BrunoCiccarino/nekonight/raw/main/extras/alacritty/nekonight_night.toml
# -----------------------------------------------------------------------------

[colors.primary]
background = '#262835'
foreground = '#c0caf5'

[colors.cursor]
cursor = '#c0caf5'
text = '#1a1b26'

[colors.normal]
black = '#15161e'
red = '#f7768e'
green = '#9ece6a'
yellow = '#e0af68'
blue = '#7aa2f7'
magenta = '#bb9af7'
cyan = '#7dcfff'
white = '#a9b1d6'

[colors.bright]
black = '#414868'
red = '#ff899d'
green = '#9fe044'
yellow = '#faba4a'
blue = '#8db0ff'
magenta = '#c7a9ff'
cyan = '#a4daff'
white = '#c0caf5'

[[colors.indexed_colors]]
index = 16
color = '#ff9e64'

[[colors.indexed_colors]]
index = 17
color = '#db4b4b'

0 comments on commit ba0b564

Please sign in to comment.