From c15d45611d7d0a161111baf75b6e52d753552d19 Mon Sep 17 00:00:00 2001 From: doc Date: Wed, 2 Jul 2025 13:06:03 +0000 Subject: initial --- alacritty.toml | 45 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 alacritty.toml (limited to 'alacritty.toml') 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" -- cgit v1.2.3