Update alacritty from yml to toml config

This commit is contained in:
2024-01-29 11:27:23 +01:00
parent bd9681e182
commit b2b1f83c98

View File

@@ -2,72 +2,77 @@
#+SETUPFILE: ./setup/org-setup-file.org #+SETUPFILE: ./setup/org-setup-file.org
#+PROPERTY: header-args+ :comments none #+PROPERTY: header-args+ :comments none
#+PROPERTY: header-args+ :mkdirp yes #+PROPERTY: header-args+ :mkdirp yes
#+PROPERTY: header-args+ :tangle ~/.config/alacritty/alacritty.yml #+PROPERTY: header-args+ :tangle ~/.config/alacritty/alacritty.toml
* Fonts * Fonts
#+begin_src yaml #+begin_src conf
font: [font]
normal: size = 10.0
family: SauceCodePro Nerd Font Mono
style: Regular
bold: [font.bold]
family: SauceCodePro Nerd Font Mono family = "SauceCodePro NFM"
style: Bold style = "Bold"
italic: [font.bold_italic]
family: SauceCodePro Nerd Font Mono family = "SauceCodePro NFM"
style: Italic style = "Bold Italic"
bold_italic: [font.italic]
family: SauceCodePro Nerd Font Mono family = "SauceCodePro NFM"
style: Bold Italic style = "Italic"
size: 10.0 [font.normal]
family = "SauceCodePro NFM"
style = "Regular"
#+end_src #+end_src
* Colors * Colors
#+begin_src yaml #+begin_src conf
colors: [colors.bright]
primary: black = "#928374"
background: &gruvbox_dark_bg '#32302f' blue = "#83a598"
foreground: '#fbf1c7' cyan = "#8ec07c"
bright_foreground: '#f9f5d7' green = "#b8bb26"
dim_foreground: '#f2e5bc' magenta = "#d3869b"
cursor: red = "#fb4934"
text: CellBackground white = "#ebdbb2"
cursor: CellForeground yellow = "#fabd2f"
vi_mode_cursor:
text: CellBackground [colors.cursor]
cursor: CellForeground cursor = "CellForeground"
selection: text = "CellBackground"
text: CellBackground
background: CellForeground [colors.dim]
bright: black = "#32302f"
black: '#928374' blue = "#076678"
red: '#fb4934' cyan = "#427b58"
green: '#b8bb26' green = "#79740e"
yellow: '#fabd2f' magenta = "#8f3f71"
blue: '#83a598' red = "#9d0006"
magenta: '#d3869b' white = "#928374"
cyan: '#8ec07c' yellow = "#b57614"
white: '#ebdbb2'
normal: [colors.normal]
black: *gruvbox_dark_bg black = "#32302f"
red: '#cc241d' blue = "#458588"
green: '#98971a' cyan = "#689d6a"
yellow: '#d79921' green = "#98971a"
blue: '#458588' magenta = "#b16286"
magenta: '#b16286' red = "#cc241d"
cyan: '#689d6a' white = "#a89984"
white: '#a89984' yellow = "#d79921"
dim:
black: '#32302f' [colors.primary]
red: '#9d0006' background = "#32302f"
green: '#79740e' bright_foreground = "#f9f5d7"
yellow: '#b57614' dim_foreground = "#f2e5bc"
blue: '#076678' foreground = "#fbf1c7"
magenta: '#8f3f71'
cyan: '#427b58' [colors.selection]
white: '#928374' background = "CellForeground"
text = "CellBackground"
[colors.vi_mode_cursor]
cursor = "CellForeground"
text = "CellBackground"
#+end_src #+end_src