dotfiles/common/.config/alacritty/alacritty.toml.org
2024-10-01 17:42:59 -05:00

1.3 KiB

Alacritty Configuration

Remove window decorations.

  [window]
  decorations = "None"

Make the window slightly transparent.

  opacity = 0.9

Add slight padding around the text.

  padding = { x = 6, y = 6 }

Allow use of option as an alt key on Mac OS.

  option_as_alt = "Both"

Use the same font as normal.

  [font]
  normal = { family = "SauceCodePro Nerd Font", style = "Regular" }
  size = 14
  [colors.primary]
  background = '#ece0c9'
  foreground = '#191916'

  [colors.normal]
  black   = '#191916'
  red     = '#ac4438'
  green   = '#354d52'
  yellow  = '#ba9151'
  blue    = '#465b91'
  magenta = '#5b5489'
  cyan    = '#4e6062'
  white   = '#c9ad7a'

  [colors.bright]
  black   = '#293c3c'
  red     = '#d8611c'
  green   = '#4b7b53'
  yellow  = '#d8974b'
  blue    = '#2f3d91'
  magenta = '#735e82'
  cyan    = '#6b8f92'
  white   = '#ece0c9'