From 38ffa2ce44507cd9a6f2675df27329a4cba4ebdb Mon Sep 17 00:00:00 2001 From: Fabian Ising Date: Mon, 11 Jan 2021 10:34:31 +0100 Subject: [PATCH] Add alacritty config --- .config/alacritty/alacritty.yml | 48 +++++++++++++++++++++++++++++++++ 1 file changed, 48 insertions(+) create mode 100644 .config/alacritty/alacritty.yml diff --git a/.config/alacritty/alacritty.yml b/.config/alacritty/alacritty.yml new file mode 100644 index 0000000..bb53649 --- /dev/null +++ b/.config/alacritty/alacritty.yml @@ -0,0 +1,48 @@ +font: + # The size to use. + size: 12 + # The normal (roman) font face to use. + normal: + family: DejaVu Sans Mono For Powerline + # Style can be specified to pick a specific face. + style: Regular + + # The bold font face + bold: + family: DejaVu Sans Mono For Powerline + # Style can be specified to pick a specific face. + # style: Bold + + # The italic font face + italic: + family: DejaVu Sans Mono For Powerline + # Style can be specified to pick a specific face. + # style: Italic + +colors: + # Default colors + primary: + background: '0x323232' + foreground: '0xeeeeec' + + # Normal colors + normal: + black: '0x2e3436' + red: '0xcc0000' + green: '0x4e9a06' + yellow: '0xc4a000' + blue: '0x3465a4' + magenta: '0x75507b' + cyan: '0x06989a' + white: '0xd3d7cf' + + # Bright colors + bright: + black: '0x555753' + red: '0xef2929' + green: '0x8ae234' + yellow: '0xfce94f' + blue: '0x729fcf' + magenta: '0xad7fa8' + cyan: '0x34e2e2' + white: '0xeeeeec'