diff options
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{-}\\^⟨⟩`]+" + |