diff --git a/.config/alacritty/alacritty.toml b/.config/alacritty/alacritty.toml new file mode 100644 index 0000000..56789cf --- /dev/null +++ b/.config/alacritty/alacritty.toml @@ -0,0 +1,37 @@ +[general] +import = [ + "~/.config/alacritty/theme.toml" +] + +[window] +decorations = "None" +padding = { x = 12, y = 12 } +opacity = 0.8 + +[scrolling] +history = 100000 + +[cursor] +style = { shape = "Block", blinking = "On" } +blink_interval = 500 +unfocused_hollow = true + +[mouse] +hide_when_typing = true + +[selection] +save_to_clipboard = false + +[bell] +duration = 0 + +[keyboard] +bindings = [ + { key = "C", mods = "Control|Shift", action = "Copy" }, + { key = "V", mods = "Control|Shift", action = "Paste" }, + { key = "N", mods = "Control|Shift", action = "SpawnNewInstance" }, + { key = "Equals", mods = "Control|Shift", action = "IncreaseFontSize" }, + { key = "Minus", mods = "Control", action = "DecreaseFontSize" }, + { key = "Key0", mods = "Control", action = "ResetFontSize" }, + { key = "Enter", mods = "Shift", chars = "\n" }, +] \ No newline at end of file