diff options
Diffstat (limited to 'alacritty.toml')
-rw-r--r-- | alacritty.toml | 45 |
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" |