about summary refs log tree commit diff
path: root/config/alacritty
diff options
context:
space:
mode:
authorvenomade <venomade@venomade.com>2026-04-08 15:07:12 +0100
committervenomade <venomade@venomade.com>2026-04-08 15:07:12 +0100
commitd422bc2b77ece72be1098bf05728275ef3306ee5 (patch)
tree8b6b6f0da228dc99f36d91cf7841c425963e73f5 /config/alacritty
parenta6543a0ba0e5399515e3dbe507a8bd12958839cc (diff)
Before the Return of the Mac HEAD master
Asahi Bugs
- Forked GL is very annoying to deal with
- Fairydust branch requires 8GB of RAM for display
- AArch64 Linux is not very compatible with much software
- DRM and other video related things are buggy/do not work
- Updating can often break fairydust
Diffstat (limited to 'config/alacritty')
-rw-r--r--config/alacritty/alacritty.toml23
-rw-r--r--config/alacritty/modus-vivendi.toml28
2 files changed, 51 insertions, 0 deletions
diff --git a/config/alacritty/alacritty.toml b/config/alacritty/alacritty.toml
new file mode 100644
index 0000000..cb32c5f
--- /dev/null
+++ b/config/alacritty/alacritty.toml
@@ -0,0 +1,23 @@
+[general]
+import = ['~/.config/alacritty/modus-vivendi.toml']
+
+[window]
+padding = { x = 6, y = 6 }
+dynamic_padding = true
+title = 'Terminal'
+
+[font]
+normal = { family = 'AporeticSansMonoNerdFont', style = 'Regular' }
+size = 12
+
+[selection]
+save_to_clipboard = true
+
+[cursor]
+style = { shape = 'Beam', blinking = 'On'}
+
+[terminal]
+shell = '/home/venomade/.nix-profile/bin/zsh'
+
+[hints]
+alphabet = 'neiotsradhwyfupl'
diff --git a/config/alacritty/modus-vivendi.toml b/config/alacritty/modus-vivendi.toml
new file mode 100644
index 0000000..20d13c1
--- /dev/null
+++ b/config/alacritty/modus-vivendi.toml
@@ -0,0 +1,28 @@
+# Colors Modus-Vivendi
+[colors.normal]
+black = '#1e1e1e'
+red = '#ff5f59'
+green = '#44bc44'
+yellow = '#d0bc00'
+blue = '#2fafff'
+magenta = '#feacd0'
+cyan = '#00d3d0'
+white = '#ffffff'
+[colors.bright]
+black = '#535353'
+red = '#ff7f9f'
+green = '#00c06f'
+yellow = '#dfaf7a'
+blue = '#00bcff'
+magenta = '#b6a0ff'
+cyan = '#6ae4b9'
+white = '#989898'
+[colors.cursor]
+cursor = '#ffffff'
+text = '#000000'
+[colors.primary]
+background = '#000000'
+foreground = '#ffffff'
+[colors.selection]
+background = '#5a5a5a'
+text = '#ffffff'