commit bfbb21cbc2e175a84319b2856456ca8fdce2a0f3
parent e1816b2795b2bed6dfddfbd535d228c85ac873e7
Author: Jake Bauer <jbauer@paritybit.ca>
Date: Fri, 24 Jul 2020 17:27:38 -0400
Switch to alacritty
Diffstat:
4 files changed, 96 insertions(+), 3 deletions(-)
diff --git a/.config/alacritty/alacritty.yml b/.config/alacritty/alacritty.yml
@@ -0,0 +1,94 @@
+# Configuration for Alacritty, the GPU enhanced terminal emulator.
+
+env:
+ TERM: alacritty
+
+# Live config reload (changes require restart)
+live_config_reload: true
+
+window:
+ title: Alacritty
+ class:
+ instance: Alacritty
+ general: Alacritty
+ padding:
+ x: 2
+ y: 2
+ # Spread additional padding evenly around the terminal content.
+ dynamic_padding: true
+
+scrolling:
+ history: 100000
+
+# Font configuration
+font:
+ size: 14.0
+ normal:
+ family: DejaVu Sans Mono
+ style: Regular
+ bold:
+ family: DejaVu Sans Mono
+ style: Bold
+ italic:
+ family: DejaVu Sans Mono
+ style: Italic
+ bold_italic:
+ family: DejaVu Sans Mono
+ style: Bold Italic
+
+draw_bold_text_with_bright_colors: true
+
+# Colors
+colors:
+ # Default colors
+ primary:
+ background: '#161821'
+ foreground: '#c6c8d1'
+
+ # Cursor colors
+ cursor:
+ text: '#161821'
+ cursor: '#c6c8d1'
+ vi_mode_cursor:
+ text: '#161821'
+ cursor: '#c6c8d1'
+ selection:
+ text: '#161821'
+ background: '#c6c8d1'
+
+ # Search colors
+ search:
+ matches:
+ foreground: '#000000'
+ background: '#ffffff'
+ bar:
+ background: CellForeground
+ foreground: CellBackground
+
+ # Normal colors
+ normal:
+ black: '#161821'
+ red: '#e27878'
+ green: '#b4be82'
+ yellow: '#e2a478'
+ blue: '#84a0c6'
+ magenta: '#a093c7'
+ cyan: '#89b8c2'
+ white: '#c6c8d1'
+
+ # Bright colors
+ bright:
+ black: '#6b7089'
+ red: '#e98989'
+ green: '#c0ca8e'
+ yellow: '#e9b189'
+ blue: '#91acd1'
+ magenta: '#ada0d3'
+ cyan: '#95c4ce'
+ white: '#d2d4de'
+
+# Cursor style
+cursor:
+ style: Beam
+ vi_mode_style: Block
+ unfocused_hollow: true
diff --git a/.config/compton.conf b/.config/compton.conf
@@ -39,7 +39,7 @@ shadow-ignore-shaped=true;
menu-opacity=0.95; # default 1.0
inactive-dim=0.2
opacity-rule = [
- "90:class_g = 'St'"
+ "90:class_g = 'Alacritty'"
];
#+----------------------------------------+
diff --git a/.config/inputrc b/.config/inputrc
@@ -1,2 +1 @@
-set enable-keypad on
set completion-ignore-case on
diff --git a/.profile b/.profile
@@ -61,7 +61,7 @@ export BROWSER="firefox"
export READER="zathura"
export PAGER="less"
export SHELL="bash"
-export TERMINAL="st-256color"
+export TERMINAL="alacritty"
# Colors in less/man
export LESS="--RAW-CONTROL-CHARS"