alacritty.toml (796B)
1 import = [ 2 # Colour scheme. 3 "~/.config/alacritty/solarized-osaka.toml", 4 ] 5 6 [env] 7 TERM = "xterm-256color" 8 9 [font] 10 normal = { family = "SF Mono", style = "Regular" } 11 size = 14.0 12 13 [[hints.enabled]] 14 command = "xdg-open" 15 post_processing = true 16 regex = "(ipfs:|ipns:|magnet:|mailto:|gemini:|gopher:|https:|http:|news:|file:|git:|ssh:|ftp:)[^\u0000-\u001F\u007F-<>\"\\s{-}\\^⟨⟩`]+" 17 18 [hints.enabled.binding] 19 key = "U" 20 mods = "Control|Shift" 21 22 [hints.enabled.mouse] 23 enabled = true 24 mods = "Shift" 25 26 [scrolling] 27 history = 10000 28 29 [selection] 30 save_to_clipboard = true 31 32 # Japanese keyboards have a ¥ key, and \ is input via Option-¥. 33 # Swap the mappings in the terminal for convenience when coding. 34 [[keyboard.bindings]] 35 chars="\\" 36 key = "¥" 37 [[keyboard.bindings]] 38 chars="¥" 39 key = "¥" 40 mods = "Alt"