alacritty.yml 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  1. window:
  2. decorations: full
  3. startup_mode: Windowed
  4. title: Alacritty
  5. class:
  6. instance: Alacritty
  7. general: Alacritty
  8. scrolling:
  9. history: 10000
  10. multiplier: 3
  11. # Font configuration
  12. font:
  13. normal:
  14. family: monospace
  15. style: Regular
  16. bold:
  17. family: monospace
  18. style: Bold
  19. italic:
  20. family: monospace
  21. style: Italic
  22. bold_italic:
  23. family: monospace
  24. style: Bold Italic
  25. size: 12.0
  26. offset:
  27. x: 0
  28. y: 0
  29. glyph_offset:
  30. x: 0
  31. y: 0
  32. # If `true`, bold text is drawn using the bright color variants.
  33. draw_bold_text_with_bright_colors: false
  34. # Colors (Terminal.app Basic)
  35. colors:
  36. primary:
  37. background: "#FFFFFF"
  38. foreground: "#000000"
  39. normal:
  40. black: "#000000"
  41. red: "#990000"
  42. green: "#00A600"
  43. yellow: "#999900"
  44. blue: "#0000B2"
  45. magenta: "#B200B2"
  46. cyan: "#00A6B2"
  47. white: "#BFBFBF"
  48. bright:
  49. black: "#666666"
  50. red: "#E50000"
  51. green: "#00D900"
  52. yellow: "#E5E500"
  53. blue: "#0000FF"
  54. magenta: "#E500E5"
  55. cyan: "#00E5E5"
  56. white: "#E5E5E5"
  57. background_opacity: 1.0
  58. selection:
  59. semantic_escape_chars: ",│`|:\"' ()[]{}<>\t"
  60. save_to_clipboard: true
  61. dynamic_title: true
  62. cursor:
  63. # Values for `style`:
  64. # - ▇ Block
  65. # - _ Underline
  66. # - | Beam
  67. style: Block
  68. unfocused_hollow: true
  69. live_config_reload: true
  70. alt_send_esc: true
  71. mouse:
  72. double_click: { threshold: 300 }
  73. triple_click: { threshold: 300 }
  74. hide_when_typing: true
  75. url:
  76. launcher:
  77. program: xdg-open
  78. args: []
  79. modifiers: None
  80. mouse_bindings:
  81. - { mouse: Middle, action: PasteSelection }
  82. key_bindings:
  83. - { key: V, mods: Control|Shift, action: Paste }
  84. - { key: C, mods: Control|Shift, action: Copy }
  85. - { key: Insert, mods: Shift, action: PasteSelection }
  86. - { key: Key0, mods: Control, action: ResetFontSize }
  87. - { key: Equals, mods: Control, action: IncreaseFontSize }
  88. - { key: Add, mods: Control, action: IncreaseFontSize }
  89. - { key: Subtract, mods: Control, action: DecreaseFontSize }
  90. - { key: Minus, mods: Control, action: DecreaseFontSize }
  91. - { key: Paste, action: Paste }
  92. - { key: Copy, action: Copy }
  93. - { key: L, mods: Control, action: ClearLogNotice }
  94. - { key: L, mods: Control, chars: "\x0c" }
  95. - { key: PageUp, mods: Shift, action: ScrollPageUp, mode: ~Alt }
  96. - { key: PageDown, mods: Shift, action: ScrollPageDown, mode: ~Alt }
  97. - { key: Home, mods: Shift, action: ScrollToTop, mode: ~Alt }
  98. - { key: End, mods: Shift, action: ScrollToBottom, mode: ~Alt }
  99. debug:
  100. render_timer: false
  101. persistent_logging: false
  102. log_level: Warn
  103. print_events: false