summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPrefetch2023-07-17 22:58:30 +0200
committerPrefetch2023-07-17 22:58:30 +0200
commitbc337e0d7dfc035068202bba67e1b3898f54db02 (patch)
treeb865f7f4154911172d352d0fbfae6635e062e9fa
Add Alacritty config
-rw-r--r--alacritty/alacritty.yml59
1 files changed, 59 insertions, 0 deletions
diff --git a/alacritty/alacritty.yml b/alacritty/alacritty.yml
new file mode 100644
index 0000000..81bfae1
--- /dev/null
+++ b/alacritty/alacritty.yml
@@ -0,0 +1,59 @@
+# See the releases on GitHub for the full default config file:
+# https://github.com/alacritty/alacritty/releases
+
+window:
+ opacity: 0.9
+ dynamic_padding: true
+
+scrolling:
+ history: 10000
+ multiplier: 5
+
+font:
+ size: 11.0
+ normal:
+ family: DejaVu Sans Mono
+ style: Regular
+ bold:
+ family: DejaVu Sans Mono
+ style: Bold
+ italic:
+ family: DejaVu Sans Mono
+ style: Oblique
+ bold_italic:
+ family: DejaVu Sans Mono
+ style: Bold Oblique
+
+# Otherwise colours don't get displayed as expected
+draw_bold_text_with_bright_colors: true
+
+# See /sys/kernel/module/vt/parameters
+colors:
+ primary:
+ background: '#000000'
+ foreground: '#eaeaea'
+ bright_foreground: '#ffffff'
+ normal:
+ black: '#000000'
+ red: '#aa0000'
+ green: '#00aa00'
+ yellow: '#aa5500'
+ blue: '#0000aa'
+ magenta: '#aa00aa'
+ cyan: '#00aaaa'
+ white: '#aaaaaa'
+ bright:
+ black: '#555555'
+ red: '#ff5555'
+ green: '#55ff55'
+ yellow: '#ffff55'
+ blue: '#5555ff'
+ magenta: '#ff55ff'
+ cyan: '#55ffff'
+ white: '#ffffff'
+
+cursor:
+ vi_mode_style: Underline
+
+working_directory: '/home/user'
+