aboutsummaryrefslogtreecommitdiff
path: root/config/alacritty/alacritty.linux.yml
diff options
context:
space:
mode:
Diffstat (limited to 'config/alacritty/alacritty.linux.yml')
-rw-r--r--config/alacritty/alacritty.linux.yml80
1 files changed, 80 insertions, 0 deletions
diff --git a/config/alacritty/alacritty.linux.yml b/config/alacritty/alacritty.linux.yml
new file mode 100644
index 0000000..6efe9dd
--- /dev/null
+++ b/config/alacritty/alacritty.linux.yml
@@ -0,0 +1,80 @@
+#############
+# alacritty #
+#############
+
+# font
+font:
+ size: 8.0
+ offset:
+ x: 0
+ y: 0
+ normal:
+ family: Fira Code
+ style: Regular
+ italic:
+ style: Italic
+ bold:
+ style: Bold
+ use_thin_strokes: false
+
+
+key_bindings:
+ - { key: J, mods: Alt, chars: "\e[B" }
+ - { key: K, mods: Alt, chars: "\e[A" }
+ - { key: J, mods: Alt|Shift, action: ScrollHalfPageDown }
+ - { key: K, mods: Alt|Shift, action: ScrollHalfPageUp }
+
+
+# gruvbox_dark: https://github.com/eendroroy/alacritty-theme/blob/master/schemes.yaml
+colors:
+ primary:
+ # hard contrast: background = '0x1d2021'
+ background: '0x282828'
+ # soft contrast: background = '0x32302f'
+ foreground: '0xebdbb2'
+ normal:
+ black: '0x282828'
+ red: '0xcc241d'
+ green: '0x98971a'
+ yellow: '0xd79921'
+ blue: '0x458588'
+ magenta: '0xb16286'
+ cyan: '0x689d6a'
+ white: '0xa89984'
+ bright:
+ black: '0x928374'
+ red: '0xfb4934'
+ green: '0xb8bb26'
+ yellow: '0xfabd2f'
+ blue: '0x83a598'
+ magenta: '0xd3869b'
+ cyan: '0x8ec07c'
+ white: '0xebdbb2'
+
+
+# # colorscheme (Dracula)
+# colors:
+# # Default colors
+# primary:
+# background: '#282a36'
+# foreground: '#f8f8f2'
+# # Normal colors
+# normal:
+# black: '#000000'
+# red: '#ff5555'
+# green: '#50fa7b'
+# yellow: '#f1fa8c'
+# blue: '#caa9fa'
+# magenta: '#ff79c6'
+# cyan: '#8be9fd'
+# white: '#bfbfbf'
+# # Bright colors
+# bright:
+# black: '#575b70'
+# red: '#ff6e67'
+# green: '#5af78e'
+# yellow: '#f4f99d'
+# blue: '#caa9fa'
+# magenta: '#ff92d0'
+# cyan: '#9aedfe'
+# white: '#e6e6e6'