dotfiles

$HOME is where the <3 is
git clone git://git.alexkarle.com/dotfiles.git
Log | Files | Refs | Submodules | README

commit 6173ef1f8bc71ca8a436069ad268ef37d5ab81f4 (patch)
parent 6b3fb4b62a5d32a983f818fb8b16c59cb37fd443
Author: Alex Karle <alex@alexkarle.com>
Date:   Tue, 24 Nov 2020 00:36:15 -0500

alacritty: Add back minimal alacritty config for sway

It's the default, might as well look good :)

Diffstat:
A.config/alacritty/alacritty.yml | 37+++++++++++++++++++++++++++++++++++++
1 file changed, 37 insertions(+), 0 deletions(-)

diff --git a/.config/alacritty/alacritty.yml b/.config/alacritty/alacritty.yml @@ -0,0 +1,37 @@ +# Configuration for Alacritty, the GPU enhanced terminal emulator. +# See /etc/alacritty/alacritty.yml for a full reference + +env: + TERM: xterm-256color + +# Colors (Gruvbox dark) +# -> https://github.com/alacritty/alacritty/wiki/Color-schemes#gruvbox +colors: + # Default colors + primary: + # hard contrast: background = '#1d2021' + background: '#282828' + # soft contrast: background = '#32302f' + foreground: '#ebdbb2' + + # Normal colors + normal: + black: '#282828' + red: '#cc241d' + green: '#98971a' + yellow: '#d79921' + blue: '#458588' + magenta: '#b16286' + cyan: '#689d6a' + white: '#a89984' + + # Bright colors + bright: + black: '#928374' + red: '#fb4934' + green: '#b8bb26' + yellow: '#fabd2f' + blue: '#83a598' + magenta: '#d3869b' + cyan: '#8ec07c' + white: '#ebdbb2'