add my alacritty config
This commit is contained in:
parent
8e93d88512
commit
9695038a90
2 changed files with 61 additions and 0 deletions
29
dotconfig/alacritty/alacritty.toml
Normal file
29
dotconfig/alacritty/alacritty.toml
Normal file
|
@ -0,0 +1,29 @@
|
||||||
|
import = ["/home/primardj/.config/alacritty/hyper.toml"]
|
||||||
|
|
||||||
|
[env]
|
||||||
|
TERM = "xterm-256color"
|
||||||
|
|
||||||
|
[font.bold]
|
||||||
|
family = "Source Code Pro"
|
||||||
|
style = "Bold"
|
||||||
|
|
||||||
|
[font.bold_italic]
|
||||||
|
family = "SourceCodeVF"
|
||||||
|
style = "Bold Italic"
|
||||||
|
|
||||||
|
[font.italic]
|
||||||
|
family = "Source Code Pro"
|
||||||
|
style = "Italic"
|
||||||
|
|
||||||
|
[font.normal]
|
||||||
|
family = "0xProto"
|
||||||
|
style = "Regular"
|
||||||
|
|
||||||
|
[[keyboard.bindings]]
|
||||||
|
action = "SpawnNewInstance"
|
||||||
|
key = "Return"
|
||||||
|
mods = "Control|Shift"
|
||||||
|
|
||||||
|
[window]
|
||||||
|
blur = false
|
||||||
|
opacity = 0.6
|
32
dotconfig/alacritty/hyper.toml
Normal file
32
dotconfig/alacritty/hyper.toml
Normal file
|
@ -0,0 +1,32 @@
|
||||||
|
# Colors (Hyper)
|
||||||
|
|
||||||
|
# Default colors
|
||||||
|
[colors.primary]
|
||||||
|
background = '#000000'
|
||||||
|
foreground = '#ffffff'
|
||||||
|
|
||||||
|
[colors.cursor]
|
||||||
|
text = '#F81CE5'
|
||||||
|
cursor = '#ffffff'
|
||||||
|
|
||||||
|
# Normal colors
|
||||||
|
[colors.normal]
|
||||||
|
black = '#000000'
|
||||||
|
red = '#fe0100'
|
||||||
|
green = '#33ff00'
|
||||||
|
yellow = '#feff00'
|
||||||
|
blue = '#0066ff'
|
||||||
|
magenta = '#cc00ff'
|
||||||
|
cyan = '#00ffff'
|
||||||
|
white = '#d0d0d0'
|
||||||
|
|
||||||
|
# Bright colors
|
||||||
|
[colors.bright]
|
||||||
|
black = '#808080'
|
||||||
|
red = '#fe0100'
|
||||||
|
green = '#33ff00'
|
||||||
|
yellow = '#feff00'
|
||||||
|
blue = '#0066ff'
|
||||||
|
magenta = '#cc00ff'
|
||||||
|
cyan = '#00ffff'
|
||||||
|
white = '#FFFFFF'
|
Loading…
Reference in a new issue