diff options
author | Matthew Lemon <y@yulqen.org> | 2024-04-04 15:15:54 +0100 |
---|---|---|
committer | Matthew Lemon <y@yulqen.org> | 2024-04-04 15:15:54 +0100 |
commit | f0a2ef376a819c9332ca81b40f53803db291d9aa (patch) | |
tree | 043b2bed9d07d09a9fc73370fe51131f789dc908 /alacritty.toml | |
parent | 80426fe85bbd3b95820d6ea328a11ef83d25b8b6 (diff) |
Updated alacritty and neomutt
Diffstat (limited to 'alacritty.toml')
-rw-r--r-- | alacritty.toml | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/alacritty.toml b/alacritty.toml new file mode 100644 index 0000000..e5f61e6 --- /dev/null +++ b/alacritty.toml @@ -0,0 +1,48 @@ +import = [ + # "~/.config/alacritty/themes/themes/base16_default_dark.toml" + "~/.config/alacritty/themes/themes/solarized_light.toml", + "~/.config/alacritty/keybindings.toml" + #"~/.config/alacritty/themes/themes/gruvbox_material_hard_dark.toml" +] + +[window] +decorations = "Full" +decorations_theme_variant = "Light" + +[keyboard] +bindings = [ +{ key = "y", mods = "Control", action = "PasteSelection" }, +] + +[font] +size = 10 + +[font.normal] +#family = "monospace" +#family = "Iosevka Nerd Font Mono" +family = "Hack" +style = "Regular" + +[font.bold] +#family = "monospace" +family = "Hack" +style = "Bold" + +[font.italic] +#family = "monospace" +family = "Iosevka Nerd Font Mono" +style = "Italic" + +[cursor] +style.shape = "Block" +style.blinking = "Off" + +[[hints.enabled]] +command = "xdg-open" # On Linux/BSD +hyperlinks = true +post_processing = true +persist = false +mouse.enabled = true +binding = { key = "I", mods = "Control|Shift" } +regex = "(ipfs:|ipns:|magnet:|mailto:|gemini://|gopher://|https://|http://|news:|file:|git://|ssh:|ftp://)[^\u0000-\u001F\u007F-\u009F<>\"\\s{-}\\^⟨⟩`]+" + |