mirror of
https://github.com/ivabus/dotfiles
synced 2024-11-10 02:05:16 +03:00
alacritty: migrate config
Signed-off-by: Ivan Bushchik <ivabus@ivabus.dev>
This commit is contained in:
parent
5e939a07cc
commit
4490f439fb
109
configs/alacritty/alacritty.toml
Normal file
109
configs/alacritty/alacritty.toml
Normal file
|
@ -0,0 +1,109 @@
|
||||||
|
[[colors.indexed_colors]]
|
||||||
|
color = "#F5A97F"
|
||||||
|
index = 16
|
||||||
|
|
||||||
|
[[colors.indexed_colors]]
|
||||||
|
color = "#F4DBD6"
|
||||||
|
index = 17
|
||||||
|
|
||||||
|
[colors.bright]
|
||||||
|
black = "#5B6078"
|
||||||
|
blue = "#8AADF4"
|
||||||
|
cyan = "#8BD5CA"
|
||||||
|
green = "#A6DA95"
|
||||||
|
magenta = "#F5BDE6"
|
||||||
|
red = "#ED8796"
|
||||||
|
white = "#A5ADCB"
|
||||||
|
yellow = "#EED49F"
|
||||||
|
|
||||||
|
[colors.cursor]
|
||||||
|
cursor = "#F4DBD6"
|
||||||
|
text = "#24273A"
|
||||||
|
|
||||||
|
[colors.dim]
|
||||||
|
black = "#494D64"
|
||||||
|
blue = "#8AADF4"
|
||||||
|
cyan = "#8BD5CA"
|
||||||
|
green = "#A6DA95"
|
||||||
|
magenta = "#F5BDE6"
|
||||||
|
red = "#ED8796"
|
||||||
|
white = "#B8C0E0"
|
||||||
|
yellow = "#EED49F"
|
||||||
|
|
||||||
|
[colors.hints.end]
|
||||||
|
background = "#A5ADCB"
|
||||||
|
foreground = "#24273A"
|
||||||
|
|
||||||
|
[colors.hints.start]
|
||||||
|
background = "#EED49F"
|
||||||
|
foreground = "#24273A"
|
||||||
|
|
||||||
|
[colors.normal]
|
||||||
|
black = "#494D64"
|
||||||
|
blue = "#8AADF4"
|
||||||
|
cyan = "#8BD5CA"
|
||||||
|
green = "#A6DA95"
|
||||||
|
magenta = "#F5BDE6"
|
||||||
|
red = "#ED8796"
|
||||||
|
white = "#B8C0E0"
|
||||||
|
yellow = "#EED49F"
|
||||||
|
|
||||||
|
[colors.primary]
|
||||||
|
background = "#24273A"
|
||||||
|
bright_foreground = "#CAD3F5"
|
||||||
|
dim_foreground = "#CAD3F5"
|
||||||
|
foreground = "#CAD3F5"
|
||||||
|
|
||||||
|
[colors.search.focused_match]
|
||||||
|
background = "#A6DA95"
|
||||||
|
foreground = "#24273A"
|
||||||
|
|
||||||
|
[colors.search.footer_bar]
|
||||||
|
background = "#A5ADCB"
|
||||||
|
foreground = "#24273A"
|
||||||
|
|
||||||
|
[colors.search.matches]
|
||||||
|
background = "#A5ADCB"
|
||||||
|
foreground = "#24273A"
|
||||||
|
|
||||||
|
[colors.selection]
|
||||||
|
background = "#F4DBD6"
|
||||||
|
text = "#24273A"
|
||||||
|
|
||||||
|
[colors.vi_mode_cursor]
|
||||||
|
cursor = "#B7BDF8"
|
||||||
|
text = "#24273A"
|
||||||
|
|
||||||
|
[cursor]
|
||||||
|
blinking = "on"
|
||||||
|
shape = "Block"
|
||||||
|
|
||||||
|
[font]
|
||||||
|
size = 9.0
|
||||||
|
|
||||||
|
[font.bold]
|
||||||
|
family = "JetBrains Mono NL"
|
||||||
|
style = "ExtraBold"
|
||||||
|
|
||||||
|
[font.italic]
|
||||||
|
family = "JetBrains Mono NL"
|
||||||
|
style = "Italic"
|
||||||
|
|
||||||
|
[font.normal]
|
||||||
|
family = "JetBrains Mono NL"
|
||||||
|
style = "SemiBold"
|
||||||
|
|
||||||
|
[scrolling]
|
||||||
|
history = 100000
|
||||||
|
multiplier = 3
|
||||||
|
|
||||||
|
[window]
|
||||||
|
opacity = 1
|
||||||
|
|
||||||
|
[window.dimensions]
|
||||||
|
columns = 80
|
||||||
|
lines = 25
|
||||||
|
|
||||||
|
[window.padding]
|
||||||
|
x = 5
|
||||||
|
y = 5
|
|
@ -1,110 +0,0 @@
|
||||||
window:
|
|
||||||
dimensions:
|
|
||||||
columns: 80
|
|
||||||
lines: 25
|
|
||||||
padding:
|
|
||||||
x: 5
|
|
||||||
y: 5
|
|
||||||
opacity: 1
|
|
||||||
scrolling:
|
|
||||||
history: 100000
|
|
||||||
multiplier: 3
|
|
||||||
|
|
||||||
font:
|
|
||||||
normal:
|
|
||||||
family: JetBrains Mono NL
|
|
||||||
style: SemiBold
|
|
||||||
|
|
||||||
bold:
|
|
||||||
family: JetBrains Mono NL
|
|
||||||
style: ExtraBold
|
|
||||||
|
|
||||||
italic:
|
|
||||||
family: JetBrains Mono NL
|
|
||||||
style: Italic
|
|
||||||
size: 9.0
|
|
||||||
|
|
||||||
cursor:
|
|
||||||
shape: Block
|
|
||||||
blinking: on
|
|
||||||
|
|
||||||
colors:
|
|
||||||
# Default colors
|
|
||||||
primary:
|
|
||||||
background: "#24273A" # base
|
|
||||||
foreground: "#CAD3F5" # text
|
|
||||||
# Bright and dim foreground colors
|
|
||||||
dim_foreground: "#CAD3F5" # text
|
|
||||||
bright_foreground: "#CAD3F5" # text
|
|
||||||
|
|
||||||
# Cursor colors
|
|
||||||
cursor:
|
|
||||||
text: "#24273A" # base
|
|
||||||
cursor: "#F4DBD6" # rosewater
|
|
||||||
vi_mode_cursor:
|
|
||||||
text: "#24273A" # base
|
|
||||||
cursor: "#B7BDF8" # lavender
|
|
||||||
|
|
||||||
# Search colors
|
|
||||||
search:
|
|
||||||
matches:
|
|
||||||
foreground: "#24273A" # base
|
|
||||||
background: "#A5ADCB" # subtext0
|
|
||||||
focused_match:
|
|
||||||
foreground: "#24273A" # base
|
|
||||||
background: "#A6DA95" # green
|
|
||||||
footer_bar:
|
|
||||||
foreground: "#24273A" # base
|
|
||||||
background: "#A5ADCB" # subtext0
|
|
||||||
|
|
||||||
# Keyboard regex hints
|
|
||||||
hints:
|
|
||||||
start:
|
|
||||||
foreground: "#24273A" # base
|
|
||||||
background: "#EED49F" # yellow
|
|
||||||
end:
|
|
||||||
foreground: "#24273A" # base
|
|
||||||
background: "#A5ADCB" # subtext0
|
|
||||||
|
|
||||||
# Selection colors
|
|
||||||
selection:
|
|
||||||
text: "#24273A" # base
|
|
||||||
background: "#F4DBD6" # rosewater
|
|
||||||
|
|
||||||
# Normal colors
|
|
||||||
normal:
|
|
||||||
black: "#494D64" # surface1
|
|
||||||
red: "#ED8796" # red
|
|
||||||
green: "#A6DA95" # green
|
|
||||||
yellow: "#EED49F" # yellow
|
|
||||||
blue: "#8AADF4" # blue
|
|
||||||
magenta: "#F5BDE6" # pink
|
|
||||||
cyan: "#8BD5CA" # teal
|
|
||||||
white: "#B8C0E0" # subtext1
|
|
||||||
|
|
||||||
# Bright colors
|
|
||||||
bright:
|
|
||||||
black: "#5B6078" # surface2
|
|
||||||
red: "#ED8796" # red
|
|
||||||
green: "#A6DA95" # green
|
|
||||||
yellow: "#EED49F" # yellow
|
|
||||||
blue: "#8AADF4" # blue
|
|
||||||
magenta: "#F5BDE6" # pink
|
|
||||||
cyan: "#8BD5CA" # teal
|
|
||||||
white: "#A5ADCB" # subtext0
|
|
||||||
|
|
||||||
# Dim colors
|
|
||||||
dim:
|
|
||||||
black: "#494D64" # surface1
|
|
||||||
red: "#ED8796" # red
|
|
||||||
green: "#A6DA95" # green
|
|
||||||
yellow: "#EED49F" # yellow
|
|
||||||
blue: "#8AADF4" # blue
|
|
||||||
magenta: "#F5BDE6" # pink
|
|
||||||
cyan: "#8BD5CA" # teal
|
|
||||||
white: "#B8C0E0" # subtext1
|
|
||||||
|
|
||||||
indexed_colors:
|
|
||||||
- { index: 16, color: "#F5A97F" }
|
|
||||||
- { index: 17, color: "#F4DBD6" }
|
|
||||||
|
|
Loading…
Reference in a new issue