alacritty: Update styler to work with new includes
Now makes use of alacritty include feature and should work without showing any git repo changes, even when changing color scheme. Only difference being that *no* color scheme requires a deletion of a line in `alacritty.yml`.
This commit is contained in:
parent
8fe325964f
commit
0a6f47bc5a
2 changed files with 6 additions and 52 deletions
3
.gitignore
vendored
3
.gitignore
vendored
|
@ -29,3 +29,6 @@ vifmimgpdfpage
|
||||||
vifmimgpdffile
|
vifmimgpdffile
|
||||||
vifminfo
|
vifminfo
|
||||||
vifminfo.json
|
vifminfo.json
|
||||||
|
|
||||||
|
# styler configs
|
||||||
|
colorscheme.yml
|
||||||
|
|
|
@ -1,50 +1,3 @@
|
||||||
# Base16 Shapeshifter - alacritty color config
|
|
||||||
# Tyler Benziger (http://tybenz.com)
|
|
||||||
shapeshifter: &colorscheme
|
|
||||||
# Default colors
|
|
||||||
primary:
|
|
||||||
background: '0xf9f9f9'
|
|
||||||
foreground: '0x102015'
|
|
||||||
|
|
||||||
# Colors the cursor will use if `custom_cursor_colors` is true
|
|
||||||
cursor:
|
|
||||||
text: '0xf9f9f9'
|
|
||||||
cursor: '0x102015'
|
|
||||||
|
|
||||||
# Normal colors
|
|
||||||
normal:
|
|
||||||
black: '0xf9f9f9'
|
|
||||||
red: '0xe92f2f'
|
|
||||||
green: '0x0ed839'
|
|
||||||
yellow: '0xdddd13'
|
|
||||||
blue: '0x3b48e3'
|
|
||||||
magenta: '0xf996e2'
|
|
||||||
cyan: '0x23edda'
|
|
||||||
white: '0x102015'
|
|
||||||
|
|
||||||
# Bright colors
|
|
||||||
bright:
|
|
||||||
black: '0x555555'
|
|
||||||
red: '0xe09448'
|
|
||||||
green: '0xe0e0e0'
|
|
||||||
yellow: '0xababab'
|
|
||||||
blue: '0x343434'
|
|
||||||
magenta: '0x040404'
|
|
||||||
cyan: '0x69542d'
|
|
||||||
white: '0x000000'
|
|
||||||
|
|
||||||
draw_bold_text_with_bright_colors: false
|
|
||||||
# Base16End shapeshifter - alacritty color config
|
|
||||||
#
|
|
||||||
# Import additional configuration files
|
|
||||||
#
|
|
||||||
# These configuration files will be loaded in order, replacing values in files
|
|
||||||
# loaded earlier with those loaded later in the chain. The file itself will
|
|
||||||
# always be loaded last.
|
|
||||||
#import:
|
|
||||||
# - /path/to/alacritty.yml
|
|
||||||
|
|
||||||
|
|
||||||
scrolling:
|
scrolling:
|
||||||
# Maximum number of lines in the scrollback buffer.
|
# Maximum number of lines in the scrollback buffer.
|
||||||
# Specifying '0' will disable scrolling.
|
# Specifying '0' will disable scrolling.
|
||||||
|
@ -54,11 +7,9 @@ scrolling:
|
||||||
# scrollback is enabled (history > 0).
|
# scrollback is enabled (history > 0).
|
||||||
multiplier: 3
|
multiplier: 3
|
||||||
|
|
||||||
# Colors (Tomorrow Night Bright)
|
|
||||||
colors: *colorscheme
|
|
||||||
|
|
||||||
# Allow terminal applications to change Alacritty's window title.
|
# Allow terminal applications to change Alacritty's window title.
|
||||||
window.dynamic_title: true
|
window.dynamic_title: true
|
||||||
|
|
||||||
# Live config reload (changes require restart)
|
import:
|
||||||
live_config_reload: true
|
- .config/alacritty/colorscheme.yml
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue