alacritty.yml 3.1 KB

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