Added alacritty configuration

This commit is contained in:
Eric Renfro 2024-03-13 19:43:50 -04:00
parent 12d43810dc
commit 03b7a8397e
Signed by: psi-jack
SSH Key Fingerprint: SHA256:1TKB8Z257L8EHK8GWNxKgMhD8a+FAR+f+j3nnlcuNVM
4 changed files with 145 additions and 0 deletions

View File

@ -0,0 +1,68 @@
[colors]
draw_bold_text_with_bright_colors = false
[colors.cursor]
cursor = "0xc5c8c6"
text = "0x1d1f21"
[colors.primary]
background = "0x1d1f21"
foreground = "0xc5c8c6"
[colors.normal]
black = "0x1d1f21"
blue = "0x81a2be"
cyan = "0x8abeb7"
green = "0xb5bd68"
magenta = "0xb294bb"
red = "0xcc6666"
white = "0xc5c8c6"
yellow = "0xf0c674"
[colors.bright]
black = "0x969896"
blue = "0xb4b7b4"
cyan = "0xa3685a"
#green = "0x282a2e"
magenta = "0xe0e0e0"
red = "0xde935f"
white = "0xffffff"
yellow = "0x373b41"
[cursor.style]
blinking = "On"
shape = "Beam"
[cursor.vi_mode_style]
blinking = "On"
shape = "Block"
[font]
size = 12.0
[font.bold]
family = "Hack Nerd Font"
style = "Bold"
[font.normal]
family = "Hack Nerd Font"
[[keyboard.bindings]]
Key = "C"
action = "Copy"
mods = "Super"
[[keyboard.bindings]]
Key = "V"
action = "Paste"
mods = "Super"
[[keyboard.bindings]]
Key = "F11"
action = "ToggleFullscreen"
[selection]
save_to_clipboard = false
[window]
opacity = 0.98

View File

@ -0,0 +1,67 @@
font:
normal:
family: Hack Nerd Font
bold:
family: Hack Nerd Font
style: Bold
size: 12.0
window:
opacity: 0.98
#decorations: none
colors:
primary:
background: '0x1d1f21'
foreground: '0xc5c8c6'
# Base16 Tomorrow Night - alacritty color config
# Chris Kempson (http://chriskempson.com)
#colors:
# # Default colors
# primary:
# background: '0x1d1f21'
# foreground: '0xc5c8c6'
# Normal colors
normal:
black: '0x1d1f21'
red: '0xcc6666'
green: '0xb5bd68'
yellow: '0xf0c674'
blue: '0x81a2be'
magenta: '0xb294bb'
cyan: '0x8abeb7'
white: '0xc5c8c6'
# Bright colors
bright:
black: '0x969896'
red: '0xde935f'
green: '0x282a2e'
yellow: '0x373b41'
blue: '0xb4b7b4'
magenta: '0xe0e0e0'
cyan: '0xa3685a'
white: '0xffffff'
draw_bold_text_with_bright_colors: false
selection:
save_to_clipboard: false
# Colors the cursor will use if `custom_cursor_colors` is true
cursor:
text: '0x1d1f21'
cursor: '0xc5c8c6'
style:
shape: Beam
blinking: On
vi_mode_style: Block
key_bindings:
- { Key: C, mods: Super, action: Copy }
- { Key: V, mods: Super, action: Paste }
- { Key: F11, action: ToggleFullscreen }

View File

@ -0,0 +1,4 @@
import = ["/home/psi-jack/.config/alacritty/alacritty.toml"]
[window]
decorations = "none"

View File

@ -0,0 +1,6 @@
import:
- ~/.config/alacritty/alacritty.yml
window:
decorations: none