add alacritty config
This commit is contained in:
parent
aa9301e8fe
commit
dfbff1c0cb
5 changed files with 192 additions and 0 deletions
28
.config/alacritty/alacritty.toml
Normal file
28
.config/alacritty/alacritty.toml
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
#[shell]
|
||||
#program = "/bin/zsh"
|
||||
|
||||
import = [
|
||||
#"~/.config/alacritty/tokyonight_day.toml",
|
||||
"~/.config/alacritty/tokyonight_moon.toml",
|
||||
#"~/.config/alacritty/tokyonight_night.toml",
|
||||
#"~/.config/alacritty/tokyonight_storm.toml",
|
||||
]
|
||||
|
||||
[font]
|
||||
normal = { family = "JetBrainsMono Nerd Font", style = "Thin" }
|
||||
size = 17
|
||||
|
||||
[window]
|
||||
decorations = "None"
|
||||
padding = { x = 10, y = 10 }
|
||||
dynamic_padding = true
|
||||
|
||||
[bell]
|
||||
duration = 10
|
||||
color = "#3a3a3a"
|
||||
|
||||
[cursor]
|
||||
style = { shape = "Block", blinking = "Always" }
|
||||
|
||||
[keyboard]
|
||||
bindings = [{ key = "T", mods = "Command", action = "CreateNewWindow" }]
|
||||
41
.config/alacritty/tokyonight_day.toml
Normal file
41
.config/alacritty/tokyonight_day.toml
Normal file
|
|
@ -0,0 +1,41 @@
|
|||
# TokyoNight Alacritty Colors
|
||||
# Default colors
|
||||
[colors.primary]
|
||||
background = '#e1e2e7'
|
||||
foreground = '#3760bf'
|
||||
|
||||
#[colors.cursor]
|
||||
#cursor = '#3760bf'
|
||||
#text = '#e1e2e7'
|
||||
|
||||
# Normal colors
|
||||
[colors.normal]
|
||||
black = '#e9e9ed'
|
||||
red = '#f52a65'
|
||||
green = '#587539'
|
||||
yellow = '#8c6c3e'
|
||||
blue = '#2e7de9'
|
||||
magenta = '#9854f1'
|
||||
cyan = '#007197'
|
||||
white = '#6172b0'
|
||||
|
||||
# Bright colors
|
||||
[colors.bright]
|
||||
black = '#a1a6c5'
|
||||
red = '#f52a65'
|
||||
green = '#587539'
|
||||
yellow = '#8c6c3e'
|
||||
blue = '#2e7de9'
|
||||
magenta = '#9854f1'
|
||||
cyan = '#007197'
|
||||
white = '#3760bf'
|
||||
|
||||
# Indexed Colors
|
||||
[[colors.indexed_colors]]
|
||||
index = 16
|
||||
color = '#b15c00'
|
||||
|
||||
[[colors.indexed_colors]]
|
||||
index = 17
|
||||
color = '#c64343'
|
||||
|
||||
41
.config/alacritty/tokyonight_moon.toml
Normal file
41
.config/alacritty/tokyonight_moon.toml
Normal file
|
|
@ -0,0 +1,41 @@
|
|||
# TokyoNight Alacritty Colors
|
||||
# Default colors
|
||||
[colors.primary]
|
||||
background = '#222436'
|
||||
foreground = '#c8d3f5'
|
||||
|
||||
#[colors.cursor]
|
||||
#cursor = '#c8d3f5'
|
||||
#text = '#222436'
|
||||
|
||||
# Normal colors
|
||||
[colors.normal]
|
||||
black = '#1b1d2b'
|
||||
red = '#ff757f'
|
||||
green = '#c3e88d'
|
||||
yellow = '#ffc777'
|
||||
blue = '#82aaff'
|
||||
magenta = '#c099ff'
|
||||
cyan = '#86e1fc'
|
||||
white = '#828bb8'
|
||||
|
||||
# Bright colors
|
||||
[colors.bright]
|
||||
black = '#444a73'
|
||||
red = '#ff757f'
|
||||
green = '#c3e88d'
|
||||
yellow = '#ffc777'
|
||||
blue = '#82aaff'
|
||||
magenta = '#c099ff'
|
||||
cyan = '#86e1fc'
|
||||
white = '#c8d3f5'
|
||||
|
||||
# Indexed Colors
|
||||
[[colors.indexed_colors]]
|
||||
index = 16
|
||||
color = '#ff966c'
|
||||
|
||||
[[colors.indexed_colors]]
|
||||
index = 17
|
||||
color = '#c53b53'
|
||||
|
||||
41
.config/alacritty/tokyonight_night.toml
Normal file
41
.config/alacritty/tokyonight_night.toml
Normal file
|
|
@ -0,0 +1,41 @@
|
|||
# TokyoNight Alacritty Colors
|
||||
# Default colors
|
||||
[colors.primary]
|
||||
background = '#1a1b26'
|
||||
foreground = '#c0caf5'
|
||||
|
||||
#[colors.cursor]
|
||||
#cursor = '#c0caf5'
|
||||
#text = '#1a1b26'
|
||||
|
||||
# Normal colors
|
||||
[colors.normal]
|
||||
black = '#15161e'
|
||||
red = '#f7768e'
|
||||
green = '#9ece6a'
|
||||
yellow = '#e0af68'
|
||||
blue = '#7aa2f7'
|
||||
magenta = '#bb9af7'
|
||||
cyan = '#7dcfff'
|
||||
white = '#a9b1d6'
|
||||
|
||||
# Bright colors
|
||||
[colors.bright]
|
||||
black = '#414868'
|
||||
red = '#f7768e'
|
||||
green = '#9ece6a'
|
||||
yellow = '#e0af68'
|
||||
blue = '#7aa2f7'
|
||||
magenta = '#bb9af7'
|
||||
cyan = '#7dcfff'
|
||||
white = '#c0caf5'
|
||||
|
||||
# Indexed Colors
|
||||
[[colors.indexed_colors]]
|
||||
index = 16
|
||||
color = '#ff9e64'
|
||||
|
||||
[[colors.indexed_colors]]
|
||||
index = 17
|
||||
color = '#db4b4b'
|
||||
|
||||
41
.config/alacritty/tokyonight_storm.toml
Normal file
41
.config/alacritty/tokyonight_storm.toml
Normal file
|
|
@ -0,0 +1,41 @@
|
|||
# TokyoNight Alacritty Colors
|
||||
# Default colors
|
||||
[colors.primary]
|
||||
background = '#24283b'
|
||||
foreground = '#c0caf5'
|
||||
|
||||
#[colors.cursor]
|
||||
#cursor = '#c0caf5'
|
||||
#text = '#24283b'
|
||||
|
||||
# Normal colors
|
||||
[colors.normal]
|
||||
black = '#1d202f'
|
||||
red = '#f7768e'
|
||||
green = '#9ece6a'
|
||||
yellow = '#e0af68'
|
||||
blue = '#7aa2f7'
|
||||
magenta = '#bb9af7'
|
||||
cyan = '#7dcfff'
|
||||
white = '#a9b1d6'
|
||||
|
||||
# Bright colors
|
||||
[colors.bright]
|
||||
black = '#414868'
|
||||
red = '#f7768e'
|
||||
green = '#9ece6a'
|
||||
yellow = '#e0af68'
|
||||
blue = '#7aa2f7'
|
||||
magenta = '#bb9af7'
|
||||
cyan = '#7dcfff'
|
||||
white = '#c0caf5'
|
||||
|
||||
# Indexed Colors
|
||||
[[colors.indexed_colors]]
|
||||
index = 16
|
||||
color = '#ff9e64'
|
||||
|
||||
[[colors.indexed_colors]]
|
||||
index = 17
|
||||
color = '#db4b4b'
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue