summaryrefslogtreecommitdiff
path: root/alacritty.toml
diff options
context:
space:
mode:
authordoc <doc@filenotfound.org>2025-07-02 13:06:03 +0000
committerdoc <doc@filenotfound.org>2025-07-02 13:06:03 +0000
commitc15d45611d7d0a161111baf75b6e52d753552d19 (patch)
tree2a45f655e56501d99b7aae4cb2aec40b07f28aee /alacritty.toml
initial
Diffstat (limited to 'alacritty.toml')
-rw-r--r--alacritty.toml45
1 files changed, 45 insertions, 0 deletions
diff --git a/alacritty.toml b/alacritty.toml
new file mode 100644
index 0000000..9f19174
--- /dev/null
+++ b/alacritty.toml
@@ -0,0 +1,45 @@
+# ~/.config/alacritty/alacritty.toml
+
+[env]
+TERM = "xterm-256color"
+
+[window]
+decorations = "full"
+opacity = 0.96
+
+[window.padding]
+x = 8
+y = 8
+
+[font]
+size = 9
+
+[cursor.style]
+shape = "Beam"
+blinking = "On"
+
+[scrolling]
+history = 10000
+multiplier = 3
+
+[shell]
+program = "/bin/bash" # or "/bin/zsh"
+
+[[keyboard.bindings]]
+key = "V"
+mods = "Control|Shift"
+action = "Paste"
+
+[[keyboard.bindings]]
+key = "C"
+mods = "Control|Shift"
+action = "Copy"
+
+[[keyboard.bindings]]
+key = "Q"
+mods = "Control|Shift"
+action = "Quit"
+
+[colors.primary]
+background = "0x1e1e2e"
+foreground = "0xcdd6f4"