some updates to alacritty

This commit is contained in:
Daylin Morgan 2023-09-08 10:34:18 -05:00
parent 90d548bcdd
commit 94b7ba2691
Signed by: daylin
GPG key ID: C1E52E7DD81DF79F
2 changed files with 73 additions and 89 deletions

View file

@ -1,5 +1,9 @@
import: import:
- ~/.config/alacritty/catppuccin-mocha.yml - ~/.config/alacritty/catppuccin-mocha.yml
env:
TERM: xterm-256color
window: window:
dimensions: dimensions:
columns: 90 columns: 90
@ -12,49 +16,29 @@ window:
x: 10 x: 10
y: 10 y: 10
# Spread additional padding evenly around the terminal content.
dynamic_padding: true dynamic_padding: true
# Window decorations
#
# Values for `decorations`: # Values for `decorations`:
# - full: Borders and title bar # - full: Borders and title bar
# - none: Neither borders nor title bar # - none: Neither borders nor title bar
# #
# Values for `decorations` (macOS only):
# - transparent: Title bar, transparent background and title bar buttons
# - buttonless: Title bar, transparent background and no title bar buttons
decorations: full decorations: full
# Window title
title: Alacritty title: Alacritty
# Font configuration # Font configuration
font: font:
# Normal (roman) font face
normal: normal:
family: "MonoLisa Nerd Font" family: "MonoLisa Nerd Font"
# bold:
# style: Bold
# italic:
# style: Italic
# bold_italic:
# style: Bold Italic
size: 12 size: 12
draw_bold_text_with_bright_colors: true
cursor: cursor:
# Cursor style
style: style:
# Cursor shape
#
# Values for `shape`: # Values for `shape`:
# - ▇ Block # - ▇ Block
# - _ Underline # - _ Underline
# - | Beam # - | Beam
shape: Underline shape: Underline
# Cursor blinking state
#
# Values for `blinking`: # Values for `blinking`:
# - Never: Prevent the cursor from ever blinking # - Never: Prevent the cursor from ever blinking
# - Off: Disable blinking by default # - Off: Disable blinking by default

View file

@ -1,78 +1,78 @@
colors: colors:
primary: primary:
background: "#1E1E2E" # base background: "#1E1E2E" # base
foreground: "#CDD6F4" # text foreground: "#CDD6F4" # text
# Bright and dim foreground colors # Bright and dim foreground colors
dim_foreground: "#CDD6F4" # text dim_foreground: "#CDD6F4" # text
bright_foreground: "#CDD6F4" # text bright_foreground: "#CDD6F4" # text
# Cursor colors # Cursor colors
cursor: cursor:
text: "#1E1E2E" # base text: "#1E1E2E" # base
cursor: "#F5E0DC" # rosewater cursor: "#F5E0DC" # rosewater
vi_mode_cursor: vi_mode_cursor:
text: "#1E1E2E" # base text: "#1E1E2E" # base
cursor: "#B4BEFE" # lavender cursor: "#B4BEFE" # lavender
# Search colors # Search colors
search: search:
matches: matches:
foreground: "#1E1E2E" # base foreground: "#1E1E2E" # base
background: "#A6ADC8" # subtext0 background: "#A6ADC8" # subtext0
focused_match: focused_match:
foreground: "#1E1E2E" # base foreground: "#1E1E2E" # base
background: "#A6E3A1" # green background: "#A6E3A1" # green
footer_bar: footer_bar:
foreground: "#1E1E2E" # base foreground: "#1E1E2E" # base
background: "#A6ADC8" # subtext0 background: "#A6ADC8" # subtext0
# Keyboard regex hints # Keyboard regex hints
hints: hints:
start: start:
foreground: "#1E1E2E" # base foreground: "#1E1E2E" # base
background: "#F9E2AF" # yellow background: "#F9E2AF" # yellow
end: end:
foreground: "#1E1E2E" # base foreground: "#1E1E2E" # base
background: "#A6ADC8" # subtext0 background: "#A6ADC8" # subtext0
# Selection colors # Selection colors
selection: selection:
text: "#1E1E2E" # base text: "#1E1E2E" # base
background: "#F5E0DC" # rosewater background: "#F5E0DC" # rosewater
# Normal colors # Normal colors
normal: normal:
black: "#45475A" # surface1 black: "#45475A" # surface1
red: "#F38BA8" # red red: "#F38BA8" # red
green: "#A6E3A1" # green green: "#A6E3A1" # green
yellow: "#F9E2AF" # yellow yellow: "#F9E2AF" # yellow
blue: "#89B4FA" # blue blue: "#89B4FA" # blue
magenta: "#F5C2E7" # pink magenta: "#F5C2E7" # pink
cyan: "#94E2D5" # teal cyan: "#94E2D5" # teal
white: "#BAC2DE" # subtext1 white: "#BAC2DE" # subtext1
# Bright colors # Bright colors
bright: bright:
black: "#585B70" # surface2 black: "#585B70" # surface2
red: "#F38BA8" # red red: "#F38BA8" # red
green: "#A6E3A1" # green green: "#A6E3A1" # green
yellow: "#F9E2AF" # yellow yellow: "#F9E2AF" # yellow
blue: "#89B4FA" # blue blue: "#89B4FA" # blue
magenta: "#F5C2E7" # pink magenta: "#F5C2E7" # pink
cyan: "#94E2D5" # teal cyan: "#94E2D5" # teal
white: "#A6ADC8" # subtext0 white: "#A6ADC8" # subtext0
# Dim colors # Dim colors
dim: dim:
black: "#45475A" # surface1 black: "#45475A" # surface1
red: "#F38BA8" # red red: "#F38BA8" # red
green: "#A6E3A1" # green green: "#A6E3A1" # green
yellow: "#F9E2AF" # yellow yellow: "#F9E2AF" # yellow
blue: "#89B4FA" # blue blue: "#89B4FA" # blue
magenta: "#F5C2E7" # pink magenta: "#F5C2E7" # pink
cyan: "#94E2D5" # teal cyan: "#94E2D5" # teal
white: "#BAC2DE" # subtext1 white: "#BAC2DE" # subtext1
indexed_colors: indexed_colors:
- { index: 16, color: "#FAB387" } - { index: 16, color: "#FAB387" }
- { index: 17, color: "#F5E0DC" } - { index: 17, color: "#F5E0DC" }