diff options
| author | Ruben Beltran del Rio <ruben@unlimited.pizza> | 2020-11-11 12:33:15 +0100 |
|---|---|---|
| committer | Ruben Beltran del Rio <ruben@unlimited.pizza> | 2020-11-11 12:33:15 +0100 |
| commit | 9ebe9c562ad7fa9c03306007228f731cd25148aa (patch) | |
| tree | f03fa24279e6aebfe12040bd272cf6ebeec0d3a7 | |
| parent | 73c7191d8479647d998088fe08564d101e080746 (diff) | |
Add initial Alacritty config
| -rw-r--r-- | alacritty.yml | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/alacritty.yml b/alacritty.yml new file mode 100644 index 0000000..4401e14 --- /dev/null +++ b/alacritty.yml @@ -0,0 +1,45 @@ +env: + TERM: xterm-256color-italic + +window: + decorations: none + +font: + normal: + family: Dank Mono + italic: + style: Italic + bold_italic: + style: Italic + size: 16 + +draw_bold_text_with_bright_colors: true + +colors: + primary: + foreground: '#eeeeee' + background: '#3e3937' + selection: + text: '#000000' + background: '#c1ddff' + normal: + black: '#888888' + red: '#ff004d' + green: '#55ff55' + yellow: '#ffec27' + blue: '#5555ff' + magenta: '#ff55ff' + cyan: '#55ffff' + white: '#c7c7c7' + bright: + black: '#aaaaaa' + red: '#ff5555' + green: '#83ff83' + yellow: '#ffff55' + blue: '#6f6fff' + magenta: '#ff82ff' + cyan: '#77ffff' + white: '#feffff' + +cursor: + style: Block |