summaryrefslogtreecommitdiff
path: root/config/alacritty/alacritty.toml
diff options
context:
space:
mode:
authorThomas Ulmer <thomasmulmer02@gmail.com>2026-02-04 14:24:16 -0800
committerThomas Ulmer <thomasmulmer02@gmail.com>2026-02-04 14:24:16 -0800
commit9139a1b136fa2b5adfcac0ac09a4f61aa1ee1ff4 (patch)
treede82bc4776b87f1fbb86f14b4a15d35d009ddd28 /config/alacritty/alacritty.toml
parenta9bf8f30c746f5b28bb7eb6938e8390127081a32 (diff)
full reorg
Diffstat (limited to 'config/alacritty/alacritty.toml')
-rw-r--r--config/alacritty/alacritty.toml49
1 files changed, 49 insertions, 0 deletions
diff --git a/config/alacritty/alacritty.toml b/config/alacritty/alacritty.toml
new file mode 100644
index 0000000..72e4f07
--- /dev/null
+++ b/config/alacritty/alacritty.toml
@@ -0,0 +1,49 @@
+# Default colors
+[colors.primary]
+background = '#111111'
+foreground = '#EEEEEE'
+
+# Cursor colors
+[colors.cursor]
+text = '#EBEBEB'
+cursor = '#1f97ea'
+
+# Normal colors
+[colors.normal]
+black = '#0d0d0d'
+red = '#FF301B'
+green = '#0ec248'
+yellow = '#FFC620'
+blue = '#3966ad'
+magenta = '#8763B8'
+cyan = '#21DEEF'
+white = '#EBEBEB'
+
+# Bright colors
+[colors.bright]
+black = '#6D7070'
+red = '#FF4352'
+green = '#B8E466'
+yellow = '#FFD750'
+blue = '#1BA6FA'
+magenta = '#A578EA'
+cyan = '#73FBF1'
+white = '#FEFEF8'
+
+[window]
+opacity = 1
+
+# Vi mode
+[[keyboard.bindings]]
+key = "Space"
+mods = "Control|Alt"
+action = "ToggleViMode"
+
+[colors.vi_mode_cursor]
+cursor = '#FF0000'
+text = '#111111'
+
+[colors.selection]
+text = '#111111'
+background = '#931b1b'
+