update dotfiles
This commit is contained in:
40
alacritty/alacritty.toml
Normal file
40
alacritty/alacritty.toml
Normal file
@ -0,0 +1,40 @@
|
||||
import = ["/home/dado/git/alacritty-master/dracula.toml"]
|
||||
|
||||
[cursor.style]
|
||||
blinking = "On"
|
||||
shape = "Beam"
|
||||
|
||||
[font]
|
||||
size = 12.0
|
||||
|
||||
[font.bold]
|
||||
family = "Ubuntu Mono"
|
||||
style = "Bold"
|
||||
|
||||
[font.bold_italic]
|
||||
family = "Ubuntu Mono"
|
||||
style = "Bold Italic"
|
||||
|
||||
[font.italic]
|
||||
family = "Ubuntu Mono"
|
||||
style = "Italic"
|
||||
|
||||
[font.normal]
|
||||
family = "Ubuntu Mono"
|
||||
style = "Retina"
|
||||
|
||||
[font.offset]
|
||||
x = 0
|
||||
y = 1
|
||||
|
||||
[window]
|
||||
dynamic_padding = true
|
||||
opacity = 0.97
|
||||
|
||||
[window.padding]
|
||||
x = 5
|
||||
y = 0
|
||||
|
||||
[window.position]
|
||||
x = 75
|
||||
y = 75
|
76
alacritty/alacritty.yml
Normal file
76
alacritty/alacritty.yml
Normal file
@ -0,0 +1,76 @@
|
||||
import:
|
||||
- ~/git/alacritty-master/dracula.yml
|
||||
window:
|
||||
opacity: 0.97
|
||||
# Window position (changes require restart)
|
||||
#
|
||||
# Specified in number of pixels.
|
||||
# If the position is not set, the window manager will handle the placement.
|
||||
position:
|
||||
x: 75
|
||||
y: 75
|
||||
# Window padding (changes require restart)
|
||||
#
|
||||
# Blank space added around the window in pixels. This padding is scaled
|
||||
# by DPI and the specified value is always added at both opposing sides.
|
||||
padding:
|
||||
x: 5
|
||||
y: 0
|
||||
# Spread additional padding evenly around the terminal content.
|
||||
dynamic_padding: true
|
||||
|
||||
cursor:
|
||||
style:
|
||||
shape: Beam
|
||||
blinking: On
|
||||
|
||||
# Font configuration
|
||||
font:
|
||||
# Normal (roman) font face
|
||||
normal:
|
||||
# Font family
|
||||
family: Ubuntu Mono
|
||||
|
||||
# The `style` can be specified to pick a specific face.
|
||||
style: Retina
|
||||
|
||||
# Bold font face
|
||||
bold:
|
||||
# Font family
|
||||
#
|
||||
# If the bold family is not specified, it will fall back to the
|
||||
# value specified for the normal font.
|
||||
family: Ubuntu Mono
|
||||
|
||||
# The `style` can be specified to pick a specific face.
|
||||
style: Bold
|
||||
|
||||
# Italic font face
|
||||
italic:
|
||||
# Font family
|
||||
#
|
||||
# If the italic family is not specified, it will fall back to the
|
||||
# value specified for the normal font.
|
||||
family: Ubuntu Mono
|
||||
|
||||
# The `style` can be specified to pick a specific face.
|
||||
style: Italic
|
||||
|
||||
# Bold italic font face
|
||||
bold_italic:
|
||||
# Font family
|
||||
#
|
||||
# If the bold italic family is not specified, it will fall back to the
|
||||
# value specified for the normal font.
|
||||
family: Ubuntu Mono
|
||||
|
||||
# The `style` can be specified to pick a specific face.
|
||||
style: Bold Italic
|
||||
|
||||
# Point size
|
||||
size: 12.0
|
||||
|
||||
# padding
|
||||
offset:
|
||||
x: 0 # For letter spacing (default: 0).
|
||||
y: 1 # For line spacing (default: 0).
|
Reference in New Issue
Block a user