Created
May 26, 2017 13:18
-
-
Save sidmitra/1138904a800e99a8a5c85aa7e1873f4c to your computer and use it in GitHub Desktop.
Alacritty - Config with Dracula theme
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
env: | |
TERM: xterm-256color | |
dimensions: | |
columns: 500 | |
lines: 100 | |
dpi: | |
x: 96.0 | |
y: 96.0 | |
tabspaces: 8 | |
draw_bold_text_with_bright_colors: true | |
font: | |
normal: | |
family: Hack | |
style: Regular | |
bold: | |
family: Hack | |
style: Bold | |
italic: | |
family: Hack # should be "Menlo" or something on macOS. | |
style: Italic | |
size: 14.0 | |
offset: | |
x: 2.0 | |
y: -7.0 | |
use_thin_strokes: true | |
render_timer: false | |
custom_cursor_colors: false | |
# Colors (Dracula) | |
colors: | |
# Default colors | |
primary: | |
background: '0x282a36' | |
foreground: '0xf8f8f2' | |
# Normal colors | |
normal: | |
black: '0x000000' | |
red: '0xff5555' | |
green: '0x50fa7b' | |
yellow: '0xf1fa8c' | |
blue: '0xcaa9fa' | |
magenta: '0xff79c6' | |
cyan: '0x8be9fd' | |
white: '0xbfbfbf' | |
# Bright colors | |
bright: | |
black: '0x282a35' | |
red: '0xff6e67' | |
green: '0x5af78e' | |
yellow: '0xf4f99d' | |
blue: '0xcaa9fa' | |
magenta: '0xff92d0' | |
cyan: '0x9aedfe' | |
white: '0xe6e6e6' | |
visual_bell: | |
animation: EaseOutExpo | |
duration: 0 | |
key_bindings: | |
- { key: V, mods: Control|Shift, action: Paste } | |
- { key: C, mods: Control|Shift, action: Copy } | |
- { key: Q, mods: Command, action: Quit } | |
- { key: W, mods: Command, action: Quit } | |
- { key: Insert, mods: Shift, action: PasteSelection } | |
- { key: Home, chars: "\x1bOH", mode: AppCursor } | |
- { key: Home, chars: "\x1b[1~", mode: ~AppCursor } | |
- { key: End, chars: "\x1bOF", mode: AppCursor } | |
- { key: End, chars: "\x1b[4~", mode: ~AppCursor } | |
- { key: PageUp, chars: "\x1b[5~" } | |
- { key: PageDown, chars: "\x1b[6~" } | |
- { key: Left, mods: Shift, chars: "\x1b[1;2D" } | |
- { key: Left, mods: Control, chars: "\x1b[1;5D" } | |
- { key: Left, mods: Alt, chars: "\x1b[1;3D" } | |
- { key: Left, chars: "\x1b[D", mode: ~AppCursor } | |
- { key: Left, chars: "\x1bOD", mode: AppCursor } | |
- { key: Right, mods: Shift, chars: "\x1b[1;2C" } | |
- { key: Right, mods: Control, chars: "\x1b[1;5C" } | |
- { key: Right, mods: Alt, chars: "\x1b[1;3C" } | |
- { key: Right, chars: "\x1b[C", mode: ~AppCursor } | |
- { key: Right, chars: "\x1bOC", mode: AppCursor } | |
- { key: Up, mods: Shift, chars: "\x1b[1;2A" } | |
- { key: Up, mods: Control, chars: "\x1b[1;5A" } | |
- { key: Up, mods: Alt, chars: "\x1b[1;3A" } | |
- { key: Up, chars: "\x1b[A", mode: ~AppCursor } | |
- { key: Up, chars: "\x1bOA", mode: AppCursor } | |
- { key: Down, mods: Shift, chars: "\x1b[1;2B" } | |
- { key: Down, mods: Control, chars: "\x1b[1;5B" } | |
- { key: Down, mods: Alt, chars: "\x1b[1;3B" } | |
- { key: Down, chars: "\x1b[B", mode: ~AppCursor } | |
- { key: Down, chars: "\x1bOB", mode: AppCursor } | |
- { key: Tab, mods: Shift, chars: "\x1b[Z" } | |
- { key: F1, chars: "\x1bOP" } | |
- { key: F2, chars: "\x1bOQ" } | |
- { key: F3, chars: "\x1bOR" } | |
- { key: F4, chars: "\x1bOS" } | |
- { key: F5, chars: "\x1b[15~" } | |
- { key: F6, chars: "\x1b[17~" } | |
- { key: F7, chars: "\x1b[18~" } | |
- { key: F8, chars: "\x1b[19~" } | |
- { key: F9, chars: "\x1b[20~" } | |
- { key: F10, chars: "\x1b[21~" } | |
- { key: F11, chars: "\x1b[23~" } | |
- { key: F12, chars: "\x1b[24~" } | |
- { key: Back, chars: "\x7f" } | |
- { key: Back, mods: Alt, chars: "\x1b\x7f" } | |
- { key: Insert, chars: "\x1b[2~" } | |
- { key: Delete, chars: "\x1b[3~" } | |
mouse_bindings: | |
- { mouse: Middle, action: PasteSelection } | |
mouse: | |
double_click: { threshold: 300 } | |
triple_click: { threshold: 300 } | |
selection: | |
semantic_escape_chars: ",│`|:\"' ()[]{}<>" | |
hide_cursor_when_typing: false |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment