alacritty: Update configuration
We use kitty color scheme the same way we use for foot. Disable history and scrollback since we now use tmux everywhere. opacity option has been moved to window.
This commit is contained in:
parent
75ff0341f6
commit
2985698bbc
1 changed files with 23 additions and 23 deletions
|
@ -44,10 +44,13 @@ window:
|
|||
# - SimpleFullscreen
|
||||
startup_mode: Windowed
|
||||
|
||||
# Background opacity
|
||||
opacity: 0.8
|
||||
|
||||
scrolling:
|
||||
# maximum number of lines in the scrollback buffer. Specifying '0' will
|
||||
# disable scrolling.
|
||||
history: 8192
|
||||
history: 0
|
||||
|
||||
# Number of lines the viewport will move for every line scrolled when
|
||||
# scrollback is enabled (history > 0).
|
||||
|
@ -70,7 +73,7 @@ font:
|
|||
style: Bold Italic
|
||||
|
||||
# Point size of the font
|
||||
size: 16.0
|
||||
size: 18.0
|
||||
|
||||
# Offset is the extra space around each character. offset.y can be thought of
|
||||
# as modifying the linespacing, and offset.x as modifying the letter spacing.
|
||||
|
@ -97,33 +100,30 @@ draw_bold_text_with_bright_colors: false
|
|||
colors:
|
||||
# Default colors
|
||||
primary:
|
||||
background: '0x1c1b19'
|
||||
foreground: '0xfce8c3'
|
||||
background: '0x000000'
|
||||
foreground: '0xdddddd'
|
||||
|
||||
# Normal colors
|
||||
normal:
|
||||
black: '0x1c1b19'
|
||||
red: '0xef2f27'
|
||||
green: '0x519f50'
|
||||
yellow: '0xfbb829'
|
||||
blue: '0x2c78bf'
|
||||
magenta: '0xe02c6d'
|
||||
cyan: '0x0aaeb3'
|
||||
white: '0xd0bfa1'
|
||||
black: '0x000000'
|
||||
red: '0xcc0403'
|
||||
green: '0x19cb00'
|
||||
yellow: '0xcecb00'
|
||||
blue: '0x0d73cc'
|
||||
magenta: '0xcb1ed1'
|
||||
cyan: '0x0dcdcd'
|
||||
white: '0xdddddd'
|
||||
|
||||
# Bright colors
|
||||
bright:
|
||||
black: '0x918175'
|
||||
red: '0xf75341'
|
||||
green: '0x98bc37'
|
||||
yellow: '0xfed06e'
|
||||
blue: '0x68a8e4'
|
||||
magenta: '0xff5c8f'
|
||||
cyan: '0x53fde9'
|
||||
white: '0xfce8c3'
|
||||
|
||||
# Background opacity
|
||||
background_opacity: 0.8
|
||||
black: '0x767676'
|
||||
red: '0xf2201f'
|
||||
green: '0x23fd00'
|
||||
yellow: '0xfffd00'
|
||||
blue: '0x1a8fff'
|
||||
magenta: '0xfd28ff'
|
||||
cyan: '0x14ffff'
|
||||
white: '0xffffff'
|
||||
|
||||
# Key bindings
|
||||
#
|
||||
|
|
Loading…
Reference in a new issue