Alacritty font update & zshrc updates

laptop
Elias Almqvist 1 year ago
parent 89eee03a2c
commit 54af7d3497
No known key found for this signature in database
GPG Key ID: E31A99CE3E75A158
  1. 59
      alacritty/.config/alacritty/alacritty.yml
  2. 1
      zsh/.zshrc

@ -19,7 +19,6 @@ window:
# General application class # General application class
general: Alacritty general: Alacritty
scrolling: scrolling:
history: 5000 history: 5000
@ -27,7 +26,6 @@ scrolling:
font: font:
# Normal (roman) font face # Normal (roman) font face
normal: normal:
family: Fira Code family: Fira Code
# The `style` can be specified to pick a specific face. # The `style` can be specified to pick a specific face.
@ -35,7 +33,6 @@ font:
# Bold font face # Bold font face
bold: bold:
family: Fira Code family: Fira Code
# The `style` can be specified to pick a specific face. # The `style` can be specified to pick a specific face.
@ -49,14 +46,13 @@ font:
# Bold italic font face # Bold italic font face
bold_italic: bold_italic:
family: Fira Code family: Fira Code
# The `style` can be specified to pick a specific face. # The `style` can be specified to pick a specific face.
style: Bold Italic style: Bold Italic
# Point size # Point size
size: 11 size: 12
# Offset is the extra space around each character. `offset.y` can be thought of # Offset is the extra space around each character. `offset.y` can be thought of
# as modifying the line spacing, and `offset.x` as modifying the letter spacing. # as modifying the line spacing, and `offset.x` as modifying the letter spacing.
@ -70,43 +66,43 @@ draw_bold_text_with_bright_colors: true
colors: colors:
# Default colors # Default colors
primary: primary:
background: '0x1d1f21' background: "0x1d1f21"
foreground: '0xc5c8c6' foreground: "0xc5c8c6"
# Colors the cursor will use if `custom_cursor_colors` is true # Colors the cursor will use if `custom_cursor_colors` is true
cursor: cursor:
text: '0x1d1f21' text: "0x1d1f21"
cursor: '0xc5c8c6' cursor: "0xc5c8c6"
# Normal colors # Normal colors
normal: normal:
black: '0x1d1f21' black: "0x1d1f21"
red: '0xcc6666' red: "0xcc6666"
green: '0xb5bd68' green: "0xb5bd68"
yellow: '0xf0c674' yellow: "0xf0c674"
blue: '0x81a2be' blue: "0x81a2be"
magenta: '0xb294bb' magenta: "0xb294bb"
cyan: '0x8abeb7' cyan: "0x8abeb7"
white: '0xc5c8c6' white: "0xc5c8c6"
# Bright colors # Bright colors
bright: bright:
black: '0x969896' black: "0x969896"
red: '0xcc6666' red: "0xcc6666"
green: '0xb5bd68' green: "0xb5bd68"
yellow: '0xf0c674' yellow: "0xf0c674"
blue: '0x81a2be' blue: "0x81a2be"
magenta: '0xb294bb' magenta: "0xb294bb"
cyan: '0x8abeb7' cyan: "0x8abeb7"
white: '0xffffff' white: "0xffffff"
indexed_colors: indexed_colors:
- { index: 16, color: '0xde935f' } - { index: 16, color: "0xde935f" }
- { index: 17, color: '0xa3685a' } - { index: 17, color: "0xa3685a" }
- { index: 18, color: '0x282a2e' } - { index: 18, color: "0x282a2e" }
- { index: 19, color: '0x373b41' } - { index: 19, color: "0x373b41" }
- { index: 20, color: '0xb4b7b4' } - { index: 20, color: "0xb4b7b4" }
- { index: 21, color: '0xe0e0e0' } - { index: 21, color: "0xe0e0e0" }
cursor: cursor:
# Values for `style`: # Values for `style`:
@ -134,4 +130,3 @@ key_bindings:
- { key: PageDown, mods: Shift, action: ScrollPageDown, mode: ~Alt } - { key: PageDown, mods: Shift, action: ScrollPageDown, mode: ~Alt }
- { key: Home, mods: Shift, action: ScrollToTop, mode: ~Alt } - { key: Home, mods: Shift, action: ScrollToTop, mode: ~Alt }
- { key: End, mods: Shift, action: ScrollToBottom, mode: ~Alt } - { key: End, mods: Shift, action: ScrollToBottom, mode: ~Alt }

@ -109,7 +109,6 @@ export PATH="$HOME/.scripts:$HOME/.cargo/bin:$HOME/.local/bin:$PATH" # Add custo
# Program defaults # Program defaults
export VIDPLAY=vlc export VIDPLAY=vlc
export IMGVIEW=eog export IMGVIEW=eog
export BROWSER=qutebrowser
export EDITOR=nvim export EDITOR=nvim
# pyenv # pyenv

Loading…
Cancel
Save