dotfiles

Personal dotfiles
git clone https://git.bracken.jp/dotfiles.git
Log | Files | Refs | LICENSE

alacritty.toml (809B)


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