From 1124bfc459e8c875c5f0960d88ed00e43d479023 Mon Sep 17 00:00:00 2001
From: Daniel Lundin <daniel@arity.se>
Date: Tue, 28 Jun 2022 14:59:41 +0200
Subject: [PATCH] Add alacritty config

---
 .config/alacritty/alacritty.yml | 80 +++++++++++++++++++++++++++++++++
 1 file changed, 80 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..f9ba961
--- /dev/null
+++ b/.config/alacritty/alacritty.yml
@@ -0,0 +1,80 @@
+env:
+  TERM: xterm-256color
+
+window:
+  decorations: none
+  startup_mode: Maximized
+
+font:
+  normal:
+    family: Iosevka Term SS09
+    style: Regular
+
+  bold:
+    family: Iosevka Term SS09
+    style: Semibold
+
+  italic:
+    family: Iosevka Term Curly Slab
+    style: Light Italic
+
+  bold_italic:
+    family: Iosevka SS15
+    style: Extralight Italic
+
+  size: 12.5
+
+  offset:
+    x: 0
+    y: 3
+
+  glyph_offset:
+    x: 0
+    y: 2
+
+cursor:
+  # Values for `style`:
+  #   - ▇ Block
+  #   - _ Underline
+  #   - | Beam
+  style: Block
+  vi_mode_style: Beam
+  unfocused_hollow: true
+  thickness: 0.15
+
+mouse:
+  hide_when_typing: true
+  # url:
+  #   launcher:
+  #     program: /home/dln/bin/url-copy
+
+colors:
+  primary:
+    background: '#fcfcfc'
+    foreground: '#000000'
+
+  normal:
+    black:   '#212121'
+    red:     '#b7141e'
+    green:   '#457b23'
+    yellow:  '#f5971d'
+    blue:    '#134eb2'
+    magenta: '#550087'
+    cyan:    '#0e707c'
+    white:   '#eeeeee'
+  bright:
+    black:   '#424242'
+    red:     '#e83a3f'
+    green:   '#7aba39'
+    yellow:  '#fee92e'
+    blue:    '#53a4f3'
+    magenta: '#a94dbb'
+    cyan:    '#26bad1'
+    white:   '#d8d8d8'
+
+key_bindings:
+- { key: V, mods: Alt,       action: Paste }
+- { key: C, mods: Alt,       action: Copy  }
+- { key: V, mods: Shift|Alt, action: Paste }
+- { key: C, mods: Shift|Alt, action: Copy  }
+- { key: Return, mods: Alt, action: ToggleFullscreen  }