diff options
author | Yaroslav de la Peña Smirnov <yps@yaroslavps.com> | 2024-06-07 00:55:02 +0300 |
---|---|---|
committer | Yaroslav de la Peña Smirnov <yps@yaroslavps.com> | 2024-06-07 00:55:02 +0300 |
commit | 182cb9918352e93047d0fcc8c38048c61b3d4dfd (patch) | |
tree | 4a2d48fccb72a871170837b39cd1ff4d94976dea /dotfiles/.config/alacritty/alacritty.toml | |
parent | 58e22e07452056f8ca971f879a96dc1c7444b4cf (diff) | |
download | swayrice-182cb9918352e93047d0fcc8c38048c61b3d4dfd.tar.gz swayrice-182cb9918352e93047d0fcc8c38048c61b3d4dfd.zip |
terminal: return to Alacritty
I haven't actively used my trusty old X200 in more than a year, and I
really did miss Alacritty's font rendering and features, namely config
hot-reload.
Diffstat (limited to 'dotfiles/.config/alacritty/alacritty.toml')
-rw-r--r-- | dotfiles/.config/alacritty/alacritty.toml | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/dotfiles/.config/alacritty/alacritty.toml b/dotfiles/.config/alacritty/alacritty.toml new file mode 100644 index 0000000..f3a3f0e --- /dev/null +++ b/dotfiles/.config/alacritty/alacritty.toml @@ -0,0 +1,32 @@ +live_config_reload = true + +import = [ + "~/.config/alacritty/ultramar-dark.toml", +] + +[bell.command] +args = ["-i", "Oxygen-Sys-App-Message"] +program = "canberra-gtk-play" + +[font] +size = 9.0 + +[mouse] +hide_when_typing = true + +[scrolling] +multiplier = 10 + +[window] +blur = true +dynamic_padding = true +opacity = 0.95 +padding = { x = 2, y = 2 } + +[[hints.enabled]] +command = "xdg-open" +hyperlinks = true +post_processing = true +mouse.enabled = true +binding = { key = "O", mods = "Control|Shift" } +regex = "(ipfs:|ipns:|magnet:|mailto:|gemini://|gopher://|https://|http://|news:|file:|git://|ssh:|ftp://)[^\u0000-\u001F\u007F-\u009F<>\"\\s{-}\\^⟨⟩‘]+" |