mirror of
https://github.com/davegallant/nix-config
synced 2025-08-07 00:58:16 +00:00
Add alacritty dark and demo themes
This commit is contained in:
79
.config/alacritty/alacritty-dark.yml
Normal file
79
.config/alacritty/alacritty-dark.yml
Normal file
@@ -0,0 +1,79 @@
|
|||||||
|
# Configuration for Alacritty, the GPU enhanced terminal emulator.
|
||||||
|
|
||||||
|
env:
|
||||||
|
TERM: xterm-256color
|
||||||
|
|
||||||
|
window:
|
||||||
|
padding:
|
||||||
|
x: 10
|
||||||
|
y: 10
|
||||||
|
|
||||||
|
# Font configuration
|
||||||
|
font:
|
||||||
|
normal:
|
||||||
|
Default:
|
||||||
|
family: Fira Code
|
||||||
|
style: Regular
|
||||||
|
|
||||||
|
bold:
|
||||||
|
family: Fira Code
|
||||||
|
|
||||||
|
italic:
|
||||||
|
family: Fira Code
|
||||||
|
|
||||||
|
bold_italic:
|
||||||
|
family: Fira
|
||||||
|
|
||||||
|
size: 11.0
|
||||||
|
|
||||||
|
# falcon colorscheme for alacritty
|
||||||
|
# by fenetikm, https://github.com/fenetikm/falcon
|
||||||
|
colors:
|
||||||
|
# Default colors
|
||||||
|
primary:
|
||||||
|
background: '0x020221'
|
||||||
|
foreground: '0xb4b4b9'
|
||||||
|
|
||||||
|
# Colors the cursor will use if `custom_cursor_colors` is true
|
||||||
|
cursor:
|
||||||
|
text: '0x020221'
|
||||||
|
cursor: '0xffe8c0'
|
||||||
|
|
||||||
|
# Normal colors
|
||||||
|
normal:
|
||||||
|
black: '0x000004'
|
||||||
|
red: '0xff3600'
|
||||||
|
green: '0x718e3f'
|
||||||
|
yellow: '0xffc552'
|
||||||
|
blue: '0x635196'
|
||||||
|
magenta: '0xff761a'
|
||||||
|
cyan: '0x34bfa4'
|
||||||
|
white: '0xb4b4b9'
|
||||||
|
|
||||||
|
# Bright colors
|
||||||
|
bright:
|
||||||
|
black: '0x020221'
|
||||||
|
red: '0xff8e78'
|
||||||
|
green: '0xb1bf75'
|
||||||
|
yellow: '0xffd392'
|
||||||
|
blue: '0x99a4bc'
|
||||||
|
magenta: '0xffb07b'
|
||||||
|
cyan: '0x8bccbf'
|
||||||
|
white: '0xf8f8ff'
|
||||||
|
|
||||||
|
custom_cursor_colors: true
|
||||||
|
|
||||||
|
background_opacity: 0.9
|
||||||
|
|
||||||
|
shell:
|
||||||
|
program: /bin/bash
|
||||||
|
args:
|
||||||
|
- -l
|
||||||
|
- -c
|
||||||
|
- "tmux"
|
||||||
|
- u
|
||||||
|
|
||||||
|
key_bindings:
|
||||||
|
- { key: Home, mods: Control, action: ResetFontSize }
|
||||||
|
- { key: Add, mods: Control, action: IncreaseFontSize }
|
||||||
|
- { key: Subtract, mods: Control, action: DecreaseFontSize }
|
75
.config/alacritty/alacritty-demo.yml
Normal file
75
.config/alacritty/alacritty-demo.yml
Normal file
@@ -0,0 +1,75 @@
|
|||||||
|
# Configuration for Alacritty, the GPU enhanced terminal emulator.
|
||||||
|
|
||||||
|
env:
|
||||||
|
TERM: xterm-256color
|
||||||
|
|
||||||
|
window:
|
||||||
|
padding:
|
||||||
|
x: 10
|
||||||
|
y: 10
|
||||||
|
|
||||||
|
# Font configuration
|
||||||
|
font:
|
||||||
|
normal:
|
||||||
|
Default:
|
||||||
|
family: Fira Code
|
||||||
|
style: Regular
|
||||||
|
|
||||||
|
bold:
|
||||||
|
family: Fira Code
|
||||||
|
|
||||||
|
italic:
|
||||||
|
family: Fira Code
|
||||||
|
|
||||||
|
bold_italic:
|
||||||
|
family: Fira
|
||||||
|
|
||||||
|
size: 11.0
|
||||||
|
|
||||||
|
# Colors (Gruvbox light)
|
||||||
|
colors:
|
||||||
|
# Default colors
|
||||||
|
primary:
|
||||||
|
# hard contrast: background = '#f9f5d7'
|
||||||
|
background: '#fbf1c7'
|
||||||
|
# soft contrast: background = '#f2e5bc'
|
||||||
|
foreground: '#3c3836'
|
||||||
|
|
||||||
|
# Normal colors
|
||||||
|
normal:
|
||||||
|
black: '#fbf1c7'
|
||||||
|
red: '#cc241d'
|
||||||
|
green: '#98971a'
|
||||||
|
yellow: '#d79921'
|
||||||
|
blue: '#458588'
|
||||||
|
magenta: '#b16286'
|
||||||
|
cyan: '#689d6a'
|
||||||
|
white: '#7c6f64'
|
||||||
|
|
||||||
|
# Bright colors
|
||||||
|
bright:
|
||||||
|
black: '#928374'
|
||||||
|
red: '#9d0006'
|
||||||
|
green: '#79740e'
|
||||||
|
yellow: '#b57614'
|
||||||
|
blue: '#076678'
|
||||||
|
magenta: '#8f3f71'
|
||||||
|
cyan: '#427b58'
|
||||||
|
white: '#3c3836'
|
||||||
|
|
||||||
|
custom_cursor_colors: true
|
||||||
|
|
||||||
|
background_opacity: 1.0
|
||||||
|
|
||||||
|
shell:
|
||||||
|
program: /bin/bash
|
||||||
|
args:
|
||||||
|
- -l
|
||||||
|
- -c
|
||||||
|
- "tmux"
|
||||||
|
- u
|
||||||
|
|
||||||
|
key_bindings:
|
||||||
|
- { key: Home, mods: Control, action: ResetFontSize }
|
||||||
|
- { key: Add, mods: Control, action: IncreaseFontSize }
|
||||||
|
- { key: Subtract, mods: Control, action: DecreaseFontSize }
|
@@ -1,78 +0,0 @@
|
|||||||
# Configuration for Alacritty, the GPU enhanced terminal emulator.
|
|
||||||
|
|
||||||
env:
|
|
||||||
TERM: xterm-256color
|
|
||||||
|
|
||||||
window:
|
|
||||||
padding:
|
|
||||||
x: 10
|
|
||||||
y: 10
|
|
||||||
|
|
||||||
# Font configuration
|
|
||||||
font:
|
|
||||||
normal:
|
|
||||||
Default:
|
|
||||||
family: Fira Code
|
|
||||||
style: Regular
|
|
||||||
|
|
||||||
bold:
|
|
||||||
family: Fira Code
|
|
||||||
|
|
||||||
italic:
|
|
||||||
family: Fira Code
|
|
||||||
|
|
||||||
bold_italic:
|
|
||||||
family: Fira
|
|
||||||
|
|
||||||
size: 11.0
|
|
||||||
|
|
||||||
# falcon colorscheme for alacritty
|
|
||||||
# by fenetikm, https://github.com/fenetikm/falcon
|
|
||||||
colors:
|
|
||||||
# Default colors
|
|
||||||
primary:
|
|
||||||
background: '0x020221'
|
|
||||||
foreground: '0xb4b4b9'
|
|
||||||
|
|
||||||
# Colors the cursor will use if `custom_cursor_colors` is true
|
|
||||||
cursor:
|
|
||||||
text: '0x020221'
|
|
||||||
cursor: '0xffe8c0'
|
|
||||||
|
|
||||||
# Normal colors
|
|
||||||
normal:
|
|
||||||
black: '0x000004'
|
|
||||||
red: '0xff3600'
|
|
||||||
green: '0x718e3f'
|
|
||||||
yellow: '0xffc552'
|
|
||||||
blue: '0x635196'
|
|
||||||
magenta: '0xff761a'
|
|
||||||
cyan: '0x34bfa4'
|
|
||||||
white: '0xb4b4b9'
|
|
||||||
|
|
||||||
# Bright colors
|
|
||||||
bright:
|
|
||||||
black: '0x020221'
|
|
||||||
red: '0xff8e78'
|
|
||||||
green: '0xb1bf75'
|
|
||||||
yellow: '0xffd392'
|
|
||||||
blue: '0x99a4bc'
|
|
||||||
magenta: '0xffb07b'
|
|
||||||
cyan: '0x8bccbf'
|
|
||||||
white: '0xf8f8ff'
|
|
||||||
|
|
||||||
custom_cursor_colors: true
|
|
||||||
|
|
||||||
background_opacity: 0.9
|
|
||||||
|
|
||||||
shell:
|
|
||||||
program: /bin/bash
|
|
||||||
args:
|
|
||||||
- -l
|
|
||||||
- -c
|
|
||||||
- "tmux"
|
|
||||||
|
|
||||||
key_bindings:
|
|
||||||
- { key: Home, mods: Control, action: ResetFontSize }
|
|
||||||
- { key: Add, mods: Control, action: IncreaseFontSize }
|
|
||||||
- { key: Subtract, mods: Control, action: DecreaseFontSize }
|
|
1
.config/alacritty/alacritty.yml
Symbolic link
1
.config/alacritty/alacritty.yml
Symbolic link
@@ -0,0 +1 @@
|
|||||||
|
alacritty-dark.yml
|
Reference in New Issue
Block a user