alacritty.yml 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732
  1. window:
  2. dimensions:
  3. columns: 140
  4. lines: 38
  5. padding:
  6. x: 10
  7. y: 10
  8. decorations: none
  9. scrolling:
  10. history: 10000
  11. multiplier: 3
  12. # background_opacity: 0.95
  13. window_opacity: 0.80
  14. # Font configuration
  15. font:
  16. normal:
  17. # family: Input
  18. # family: Fira Code
  19. # style: Regular
  20. family: JetBrains Mono
  21. # style: Thin
  22. # family: Source Code Pro
  23. # family: Iosevka Term
  24. # family: Terminus
  25. style: Light
  26. bold:
  27. # family: Source Code Pro
  28. # family: Terminus
  29. family: JetBrains Mono
  30. style: Regular
  31. # Bold font face
  32. bold:
  33. # Font family
  34. #
  35. # If the bold family is not specified, it will fall back to the
  36. # value specified for the normal font.
  37. #family: monospace
  38. # family: Terminus
  39. family: JetBrains Mono
  40. # The `style` can be specified to pick a specific face.
  41. style: Bold
  42. # Italic font face
  43. italic:
  44. # Font family
  45. #
  46. # If the italic family is not specified, it will fall back to the
  47. # value specified for the normal font.
  48. #family: monospace
  49. # family: Terminus
  50. family: JetBrains Mono
  51. # The `style` can be specified to pick a specific face.
  52. style: Italic
  53. # Bold italic font face
  54. bold_italic:
  55. # Font family
  56. #
  57. # If the bold italic family is not specified, it will fall back to the
  58. # value specified for the normal font.
  59. #family: moospace
  60. # family: Terminus
  61. family: JetBrains Mono
  62. # The `style` can be specified to pick a specific face.
  63. style: Bold Italic
  64. # Point size
  65. size: 10.0
  66. offset:
  67. x: 0
  68. y: 0
  69. glyph_offset:
  70. x: 0
  71. y: 0
  72. # use_thin_strokes: true
  73. # If `true`, bold text is drawn using the bright color variants.
  74. #draw_bold_text_with_bright_colors: false
  75. # Colors (Tomorrow Night)
  76. #colors:
  77. # Default colors
  78. # primary:
  79. # background: '#1d1f21'
  80. # foreground: '#c5c8c6'
  81. # Bright and dim foreground colors
  82. #
  83. # The dimmed foreground color is calculated automatically if it is not present.
  84. # If the bright foreground color is not set, or `draw_bold_text_with_bright_colors`
  85. # is `false`, the normal foreground color will be used.
  86. #dim_foreground: '#828482'
  87. #bright_foreground: '#eaeaea'
  88. # Cursor colors
  89. #
  90. # Colors which should be used to draw the terminal cursor.
  91. #
  92. # Allowed values are CellForeground and CellBackground, which reference the
  93. # affected cell, or hexadecimal colors like #ff00ff.
  94. #cursor:
  95. # text: CellBackground
  96. # cursor: CellForeground
  97. # Vi mode cursor colors
  98. #
  99. # Colors for the cursor when the vi mode is active.
  100. #
  101. # Allowed values are CellForeground and CellBackground, which reference the
  102. # affected cell, or hexadecimal colors like #ff00ff.
  103. #vi_mode_cursor:
  104. # text: CellBackground
  105. # cursor: CellForeground
  106. # Selection colors
  107. #
  108. # Colors which should be used to draw the selection area.
  109. #
  110. # Allowed values are CellForeground and CellBackground, which reference the
  111. # affected cell, or hexadecimal colors like #ff00ff.
  112. #selection:
  113. # text: CellBackground
  114. # background: CellForeground
  115. # Search colors
  116. #
  117. # Colors used for the search bar and match highlighting.
  118. #search:
  119. # Allowed values are CellForeground and CellBackground, which reference the
  120. # affected cell, or hexadecimal colors like #ff00ff.
  121. #matches:
  122. # foreground: '#000000'
  123. # background: '#ffffff'
  124. #bar:
  125. # background: '#c5c8c6'
  126. # foreground: '#1d1f21'
  127. # Normal colors
  128. #normal:
  129. # black: '#1d1f21'
  130. # red: '#cc6666'
  131. # green: '#b5bd68'
  132. # yellow: '#f0c674'
  133. # blue: '#81a2be'
  134. # magenta: '#b294bb'
  135. # cyan: '#8abeb7'
  136. # white: '#c5c8c6'
  137. # Bright colors
  138. #bright:
  139. # black: '#373b41'
  140. # red: '#a54242'
  141. # green: '#8c9440'
  142. # yellow: '#de935f'
  143. # blue: '#5f819d'
  144. # magenta: '#85678f'
  145. # cyan: '#5e8d87'
  146. # white: '#707880'
  147. # Dim colors
  148. #
  149. # If the dim colors are not set, they will be calculated automatically based
  150. # on the `normal` colors.
  151. #dim:
  152. # black: '#131415'
  153. # red: '#864343'
  154. # green: '#777c44'
  155. # yellow: '#9e824c'
  156. # blue: '#556a7d'
  157. # magenta: '#75617b'
  158. # cyan: '#5b7d78'
  159. # white: '#828482'
  160. # Indexed Colors
  161. #
  162. # The indexed colors include all colors from 16 to 256.
  163. # When these are not set, they're filled with sensible defaults.
  164. #
  165. # Example:
  166. # `- { index: 16, color: '#ff00ff' }`
  167. #
  168. #indexed_colors: []
  169. # Bell
  170. #
  171. # The bell is rung every time the BEL control character is received.
  172. #bell:
  173. # Visual Bell Animation
  174. #
  175. # Animation effect for flashing the screen when the visual bell is rung.
  176. #
  177. # Values for `animation`:
  178. # - Ease
  179. # - EaseOut
  180. # - EaseOutSine
  181. # - EaseOutQuad
  182. # - EaseOutCubic
  183. # - EaseOutQuart
  184. # - EaseOutQuint
  185. # - EaseOutExpo
  186. # - EaseOutCirc
  187. # - Linear
  188. #animation: EaseOutExpo
  189. # Duration of the visual bell flash. A `duration` of `0` will disable the
  190. # visual bell animation.
  191. #duration: 0
  192. # Visual bell animation color.
  193. #color: '#ffffff'
  194. # Bell Command
  195. #
  196. # This program is executed whenever the bell is rung.
  197. #
  198. # When set to `command: None`, no command will be executed.
  199. #
  200. # Example:
  201. # command:
  202. # program: notify-send
  203. # args: ["Hello, World!"]
  204. #
  205. #command: None
  206. # Background opacity
  207. #
  208. # Window opacity as a floating point number from `0.0` to `1.0`.
  209. # The value `0.0` is completely transparent and `1.0` is opaque.
  210. #background_opacity: 1.0
  211. #selection:
  212. # This string contains all characters that are used as separators for "semantic words" in Alacritty.
  213. #semantic_escape_chars: ",│`|:\"' ()[]{}<>\t"
  214. # When set to `true`, selected text will be copied to the primary clipboard.
  215. #save_to_clipboard: false
  216. cursor:
  217. # Cursor style
  218. #
  219. # Values for `style`:
  220. # - ▇ Block
  221. # - _ Underline
  222. # - | Beam
  223. style: Block
  224. # Vi mode cursor style
  225. #
  226. # If the vi mode cursor style is `None` or not specified, it will fall back to
  227. # the style of the active value of the normal cursor.
  228. #
  229. # See `cursor.style` for available options.
  230. #vi_mode_style: None
  231. # If this is `true`, the cursor will be rendered as a hollow box when the
  232. # window is not focused.
  233. unfocused_hollow: true
  234. # Thickness of the cursor relative to the cell width as floating point number
  235. # from `0.0` to `1.0`.
  236. #thickness: 0.15
  237. # Live config reload (changes require restart)
  238. #live_config_reload: true
  239. # Shell
  240. #
  241. # You can set `shell.program` to the path of your favorite shell, e.g. `/bin/fish`.
  242. # Entries in `shell.args` are passed unmodified as arguments to the shell.
  243. #
  244. # Default:
  245. # - (macOS) /bin/bash --login
  246. # - (Linux/BSD) user login shell
  247. # - (Windows) powershell
  248. #shell:
  249. # program: /bin/bash
  250. # args:
  251. # - --login
  252. # Startup directory
  253. #
  254. # Directory the shell is started in. If this is unset, or `None`, the working
  255. # directory of the parent process will be used.
  256. #working_directory: None
  257. # WinPTY backend (Windows only)
  258. #
  259. # Alacritty defaults to using the newer ConPTY backend if it is available,
  260. # since it resolves a lot of bugs and is quite a bit faster. If it is not
  261. # available, the WinPTY backend will be used instead.
  262. #
  263. # Setting this option to `true` makes Alacritty use the legacy WinPTY backend,
  264. # even if the ConPTY backend is available.
  265. #winpty_backend: false
  266. # Send ESC (\x1b) before characters when alt is pressed.
  267. #alt_send_esc: true
  268. #mouse:
  269. # Click settings
  270. #
  271. # The `double_click` and `triple_click` settings control the time
  272. # alacritty should wait for accepting multiple clicks as one double
  273. # or triple click.
  274. #double_click: { threshold: 300 }
  275. #triple_click: { threshold: 300 }
  276. # If this is `true`, the cursor is temporarily hidden when typing.
  277. #hide_when_typing: false
  278. #url:
  279. # URL launcher
  280. #
  281. # This program is executed when clicking on a text which is recognized as a URL.
  282. # The URL is always added to the command as the last parameter.
  283. #
  284. # When set to `launcher: None`, URL launching will be disabled completely.
  285. #
  286. # Default:
  287. # - (macOS) open
  288. # - (Linux/BSD) xdg-open
  289. # - (Windows) explorer
  290. #launcher:
  291. # program: xdg-open
  292. # args: []
  293. # URL modifiers
  294. #
  295. # These are the modifiers that need to be held down for opening URLs when clicking
  296. # on them. The available modifiers are documented in the key binding section.
  297. #modifiers: None
  298. # Mouse bindings
  299. #
  300. # Mouse bindings are specified as a list of objects, much like the key
  301. # bindings further below.
  302. #
  303. # To trigger mouse bindings when an application running within Alacritty captures the mouse, the
  304. # `Shift` modifier is automatically added as a requirement.
  305. #
  306. # Each mouse binding will specify a:
  307. #
  308. # - `mouse`:
  309. #
  310. # - Middle
  311. # - Left
  312. # - Right
  313. # - Numeric identifier such as `5`
  314. #
  315. # - `action` (see key bindings)
  316. #
  317. # And optionally:
  318. #
  319. # - `mods` (see key bindings)
  320. #mouse_bindings:
  321. # - { mouse: Middle, action: PasteSelection }
  322. # Key bindings
  323. #
  324. # Key bindings are specified as a list of objects. For example, this is the
  325. # default paste binding:
  326. #
  327. # `- { key: V, mods: Control|Shift, action: Paste }`
  328. #
  329. # Each key binding will specify a:
  330. #
  331. # - `key`: Identifier of the key pressed
  332. #
  333. # - A-Z
  334. # - F1-F24
  335. # - Key0-Key9
  336. #
  337. # A full list with available key codes can be found here:
  338. # https://docs.rs/glutin/*/glutin/event/enum.VirtualKeyCode.html#variants
  339. #
  340. # Instead of using the name of the keys, the `key` field also supports using
  341. # the scancode of the desired key. Scancodes have to be specified as a
  342. # decimal number. This command will allow you to display the hex scancodes
  343. # for certain keys:
  344. #
  345. # `showkey --scancodes`.
  346. #
  347. # Then exactly one of:
  348. #
  349. # - `chars`: Send a byte sequence to the running application
  350. #
  351. # The `chars` field writes the specified string to the terminal. This makes
  352. # it possible to pass escape sequences. To find escape codes for bindings
  353. # like `PageUp` (`"\x1b[5~"`), you can run the command `showkey -a` outside
  354. # of tmux. Note that applications use terminfo to map escape sequences back
  355. # to keys. It is therefore required to update the terminfo when changing an
  356. # escape sequence.
  357. #
  358. # - `action`: Execute a predefined action
  359. #
  360. # - ToggleViMode
  361. # - SearchForward
  362. # Start searching toward the right of the search origin.
  363. # - SearchBackward
  364. # Start searching toward the left of the search origin.
  365. # - Copy
  366. # - Paste
  367. # - IncreaseFontSize
  368. # - DecreaseFontSize
  369. # - ResetFontSize
  370. # - ScrollPageUp
  371. # - ScrollPageDown
  372. # - ScrollHalfPageUp
  373. # - ScrollHalfPageDown
  374. # - ScrollLineUp
  375. # - ScrollLineDown
  376. # - ScrollToTop
  377. # - ScrollToBottom
  378. # - ClearHistory
  379. # Remove the terminal's scrollback history.
  380. # - Hide
  381. # Hide the Alacritty window.
  382. # - Minimize
  383. # Minimize the Alacritty window.
  384. # - Quit
  385. # Quit Alacritty.
  386. # - ToggleFullscreen
  387. # - SpawnNewInstance
  388. # Spawn a new instance of Alacritty.
  389. # - ClearLogNotice
  390. # Clear Alacritty's UI warning and error notice.
  391. # - ClearSelection
  392. # Remove the active selection.
  393. # - ReceiveChar
  394. # - None
  395. #
  396. # (`mode: Vi` only):
  397. # - Open
  398. # Open URLs at the cursor location with the launcher configured in `url.launcher`.
  399. # - Up
  400. # Move the vi mode cursor up by one line.
  401. # - Down
  402. # Move the vi mode cursor down by one line.
  403. # - Left
  404. # Move the vi mode cursor left by one character.
  405. # - Right
  406. # Move the vi mode cursor right by one character.
  407. # - First
  408. # Move the vi mode cursor to the start of the line, searching across newlines if it is already at the beginning.
  409. # - Last
  410. # Move the vi mode cursor to the end of the line, searching across newlines if it is already at the end.
  411. # - FirstOccupied
  412. # Move the vi mode cursor to the first non-empty cell in this line, searching across newlines if it is already at the first one.
  413. # - High
  414. # Move the vi mode cursor to the top of the screen.
  415. # - Middle
  416. # Move the vi mode cursor to the middle of the screen.
  417. # - Low
  418. # Move the vi mode cursor to the bottom of the screen.
  419. # - SemanticLeft
  420. # Move the vi mode cursor to the start of the previous semantically separated word.
  421. # - SemanticRight
  422. # Move the vi mode cursor to the start of the next semantically separated word.
  423. # - SemanticLeftEnd
  424. # Move the vi mode cursor to the end of the previous semantically separated word.
  425. # - SemanticRightEnd
  426. # Move the vi mode cursor to the end of the next semantically separated word.
  427. # - WordLeft
  428. # Move the vi mode cursor to the start of the previous whitespace separated word.
  429. # - WordRight
  430. # Move the vi mode cursor to the start of the next whitespace separated word.
  431. # - WordLeftEnd
  432. # Move the vi mode cursor to the end of the previous whitespace separated word.
  433. # - WordRightEnd
  434. # Move the vi mode cursor to the end of the next whitespace separated word.
  435. # - Bracket
  436. # Move the vi mode cursor to the next character that matches the bracket at the cursor's
  437. # current location.
  438. # - ToggleNormalSelection
  439. # - ToggleLineSelection
  440. # - ToggleBlockSelection
  441. # - ToggleSemanticSelection
  442. # Toggle semantic selection based on `selection.semantic_escape_chars`.
  443. # - SearchNext
  444. # Jump to the beginning of the next match.
  445. # - SearchPrevious
  446. # Jump to the beginning of the previous match.
  447. # - SearchStart
  448. # Jump to the next start of a match to the left of the vi mode cursor.
  449. # - SearchEnd
  450. # Jump to the next end of a match to the left of the vi mode cursor.
  451. #
  452. # (macOS only):
  453. # - ToggleSimpleFullscreen
  454. # Enter fullscreen without occupying another space.
  455. #
  456. # (Linux/BSD only):
  457. # - CopySelection
  458. # Copy from the selection buffer.
  459. # - PasteSelection
  460. # Paste from the selection buffer.
  461. #
  462. # - `command`: Fork and execute a specified command plus arguments
  463. #
  464. # The `command` field must be a map containing a `program` string and an
  465. # `args` array of command line parameter strings. For example:
  466. # `{ program: "alacritty", args: ["-e", "vttest"] }`
  467. #
  468. # And optionally:
  469. #
  470. # - `mods`: Key modifiers to filter binding actions
  471. #
  472. # - Command
  473. # - Control
  474. # - Option
  475. # - Super
  476. # - Shift
  477. # - Alt
  478. #
  479. # Multiple `mods` can be combined using `|` like this:
  480. # `mods: Control|Shift`.
  481. # Whitespace and capitalization are relevant and must match the example.
  482. #
  483. # - `mode`: Indicate a binding for only specific terminal reported modes
  484. #
  485. # This is mainly used to send applications the correct escape sequences
  486. # when in different modes.
  487. #
  488. # - AppCursor
  489. # - AppKeypad
  490. # - Alt
  491. # - Vi
  492. #
  493. # A `~` operator can be used before a mode to apply the binding whenever
  494. # the mode is *not* active, e.g. `~Alt`.
  495. #
  496. # Bindings are always filled by default, but will be replaced when a new
  497. # binding with the same triggers is defined. To unset a default binding, it can
  498. # be mapped to the `ReceiveChar` action. Alternatively, you can use `None` for
  499. # a no-op if you do not wish to receive input characters for that binding.
  500. #
  501. # If the same trigger is assigned to multiple actions, all of them are executed
  502. # in the order they were defined in.
  503. key_bindings:
  504. #- { key: Paste, action: Paste }
  505. #- { key: Copy, action: Copy }
  506. #- { key: L, mods: Control, action: ClearLogNotice }
  507. #- { key: L, mods: Control, mode: ~Vi, chars: "\x0c" }
  508. #- { key: PageUp, mods: Shift, mode: ~Alt, action: ScrollPageUp, }
  509. #- { key: PageDown, mods: Shift, mode: ~Alt, action: ScrollPageDown }
  510. #- { key: Home, mods: Shift, mode: ~Alt, action: ScrollToTop, }
  511. #- { key: End, mods: Shift, mode: ~Alt, action: ScrollToBottom }
  512. # Vi Mode
  513. #- { key: Space, mods: Shift|Control, mode: Vi, action: ScrollToBottom }
  514. #- { key: Space, mods: Shift|Control, action: ToggleViMode }
  515. #- { key: Escape, mode: Vi, action: ClearSelection }
  516. #- { key: I, mode: Vi, action: ScrollToBottom }
  517. #- { key: I, mode: Vi, action: ToggleViMode }
  518. #- { key: C, mods: Control, mode: Vi, action: ToggleViMode }
  519. #- { key: Y, mods: Control, mode: Vi, action: ScrollLineUp }
  520. #- { key: E, mods: Control, mode: Vi, action: ScrollLineDown }
  521. #- { key: G, mode: Vi, action: ScrollToTop }
  522. #- { key: G, mods: Shift, mode: Vi, action: ScrollToBottom }
  523. #- { key: B, mods: Control, mode: Vi, action: ScrollPageUp }
  524. #- { key: F, mods: Control, mode: Vi, action: ScrollPageDown }
  525. #- { key: U, mods: Control, mode: Vi, action: ScrollHalfPageUp }
  526. #- { key: D, mods: Control, mode: Vi, action: ScrollHalfPageDown }
  527. #- { key: Y, mode: Vi, action: Copy }
  528. #- { key: Y, mode: Vi, action: ClearSelection }
  529. #- { key: Copy, mode: Vi, action: ClearSelection }
  530. #- { key: V, mode: Vi, action: ToggleNormalSelection }
  531. #- { key: V, mods: Shift, mode: Vi, action: ToggleLineSelection }
  532. #- { key: V, mods: Control, mode: Vi, action: ToggleBlockSelection }
  533. #- { key: V, mods: Alt, mode: Vi, action: ToggleSemanticSelection }
  534. #- { key: Return, mode: Vi, action: Open }
  535. #- { key: K, mode: Vi, action: Up }
  536. #- { key: J, mode: Vi, action: Down }
  537. #- { key: H, mode: Vi, action: Left }
  538. #- { key: L, mode: Vi, action: Right }
  539. #- { key: Up, mode: Vi, action: Up }
  540. #- { key: Down, mode: Vi, action: Down }
  541. #- { key: Left, mode: Vi, action: Left }
  542. #- { key: Right, mode: Vi, action: Right }
  543. #- { key: Key0, mode: Vi, action: First }
  544. #- { key: Key4, mods: Shift, mode: Vi, action: Last }
  545. #- { key: Key6, mods: Shift, mode: Vi, action: FirstOccupied }
  546. #- { key: H, mods: Shift, mode: Vi, action: High }
  547. #- { key: M, mods: Shift, mode: Vi, action: Middle }
  548. #- { key: L, mods: Shift, mode: Vi, action: Low }
  549. #- { key: B, mode: Vi, action: SemanticLeft }
  550. #- { key: W, mode: Vi, action: SemanticRight }
  551. #- { key: E, mode: Vi, action: SemanticRightEnd }
  552. #- { key: B, mods: Shift, mode: Vi, action: WordLeft }
  553. #- { key: W, mods: Shift, mode: Vi, action: WordRight }
  554. #- { key: E, mods: Shift, mode: Vi, action: WordRightEnd }
  555. #- { key: Key5, mods: Shift, mode: Vi, action: Bracket }
  556. #- { key: Slash, mode: Vi, action: SearchForward }
  557. #- { key: Slash, mods: Shift, mode: Vi, action: SearchBackward }
  558. #- { key: N, mode: Vi, action: SearchNext }
  559. #- { key: N, mods: Shift, mode: Vi, action: SearchPrevious }
  560. # (Windows, Linux, and BSD only)
  561. #- { key: V, mods: Control|Shift, action: Paste }
  562. #- { key: C, mods: Control|Shift, action: Copy }
  563. #- { key: F, mods: Control|Shift, action: SearchForward }
  564. #- { key: B, mods: Control|Shift, action: SearchBackward }
  565. #- { key: C, mods: Control|Shift, mode: Vi, action: ClearSelection }
  566. #- { key: Insert, mods: Shift, action: PasteSelection }
  567. #- { key: Key0, mods: Control, action: ResetFontSize }
  568. #- { key: Equals, mods: Control, action: IncreaseFontSize }
  569. #- { key: Plus, mods: Control, action: IncreaseFontSize }
  570. #- { key: NumpadAdd, mods: Control, action: IncreaseFontSize }
  571. #- { key: Minus, mods: Control, action: DecreaseFontSize }
  572. #- { key: NumpadSubtract, mods: Control, action: DecreaseFontSize }
  573. # (Windows only)
  574. #- { key: Return, mods: Alt, action: ToggleFullscreen }
  575. # (macOS only)
  576. #- { key: K, mods: Command, mode: ~Vi, chars: "\x0c" }
  577. #- { key: Key0, mods: Command, action: ResetFontSize }
  578. #- { key: Equals, mods: Command, action: IncreaseFontSize }
  579. #- { key: Plus, mods: Command, action: IncreaseFontSize }
  580. #- { key: NumpadAdd, mods: Command, action: IncreaseFontSize }
  581. #- { key: Minus, mods: Command, action: DecreaseFontSize }
  582. #- { key: NumpadSubtract, mods: Command, action: DecreaseFontSize }
  583. #- { key: K, mods: Command, action: ClearHistory }
  584. #- { key: V, mods: Command, action: Paste }
  585. #- { key: C, mods: Command, action: Copy }
  586. #- { key: C, mods: Command, mode: Vi, action: ClearSelection }
  587. #- { key: H, mods: Command, action: Hide }
  588. #- { key: M, mods: Command, action: Minimize }
  589. #- { key: Q, mods: Command, action: Quit }
  590. #- { key: W, mods: Command, action: Quit }
  591. - { key: N, mods: Command, action: SpawnNewInstance }
  592. - { key: F, mods: Control, action: ToggleFullscreen }
  593. #- { key: F, mods: Command|Control, action: ToggleFullscreen }
  594. #- { key: F, mods: Command, action: SearchForward }
  595. #- { key: B, mods: Command, action: SearchBackward }
  596. #debug:
  597. # Display the time it takes to redraw each frame.
  598. #render_timer: false
  599. # Keep the log file after quitting Alacritty.
  600. #persistent_logging: false
  601. # Log level
  602. #
  603. # Values for `log_level`:
  604. # - None
  605. # - Error
  606. # - Warn
  607. # - Info
  608. # - Debug
  609. # - Trace
  610. #log_level: Warn
  611. # Print all received window events.
  612. #print_events: false
  613. #
  614. #
  615. # ------------------------------------
  616. # colors:
  617. # # Default colors
  618. # primary:
  619. # background: '0x1d1f21'
  620. # foreground: '0xc5c8c6'
  621. #
  622. # # Normal colors
  623. # normal:
  624. # black: '0x282a2e'
  625. # red: '0xa54242'
  626. # green: '0x8c9440'
  627. # yellow: '0xde935f'
  628. # blue: '0x5f819d'
  629. # magenta: '0x85678f'
  630. # cyan: '0x5e8d87'
  631. # white: '0x707880'
  632. #
  633. # # Bright colors
  634. # bright:
  635. # black: '0x373b41'
  636. # red: '0xcc6666'
  637. # green: '0xb5bd68'
  638. # yellow: '0xf0c674'
  639. # blue: '0x81a2be'
  640. # magenta: '0xb294bb'
  641. # cyan: '0x8abeb7'
  642. # white: '0xc5c8c6'
  643. # ----------------------------------
  644. colors:
  645. # Default colors
  646. primary:
  647. background: "0x1d1f21"
  648. foreground: "0xc5c8c6"
  649. # Normal colors
  650. normal:
  651. black: "0x282a2e"
  652. red: "0xa54242"
  653. green: "0x8c9440"
  654. yellow: "0xde935f"
  655. blue: "0x5f819d"
  656. magenta: "0x85678f"
  657. cyan: "0x5e8d87"
  658. white: "0x707880"
  659. # Bright colors
  660. bright:
  661. black: "0x373b41"
  662. red: "0xcc6666"
  663. green: "0xb5bd68"
  664. yellow: "0xf0c674"
  665. blue: "0x81a2be"
  666. magenta: "0xb294bb"
  667. cyan: "0x8abeb7"
  668. white: "0xc5c8c6"
  669. cursor:
  670. text: "0xc5c8c6"
  671. cursor: "0xcc6666"