Skip to content

Instantly share code, notes, and snippets.

@jssee
Created June 17, 2020 21:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jssee/548b3c0061a0a9933570760646b9e8b7 to your computer and use it in GitHub Desktop.
Save jssee/548b3c0061a0a9933570760646b9e8b7 to your computer and use it in GitHub Desktop.
alacritty config
env:
TERM: xterm-256color
window:
dimensions:
columns: 120
lines: 100
decorations: full
scrolling:
history: 10000
multiplier: 3
font:
normal:
family: 'Rec Mono Duotone'
style: Regular
bold:
family: 'Rec Mono Duotone'
style: Bold
italic:
family: 'Rec Mono Duotone'
style: Italic
bold_italic:
family: 'Rec Mono Duotone'
style: Bold Italic
size: 15.0
offset:
y: 5
use_thin_strokes: true
draw_bold_text_with_bright_colors: true
colors:
# Cortado
primary:
background: '#171b23'
foreground: '#d1c3ab'
cursor:
text: '#171b23'
cursor: '#e3ddd8'
selection:
text: '#d1c3ab'
background: '#363d49'
normal:
black: '#171b23'
red: '#f9815c'
green: '#4fa579'
yellow: '#c79f5b'
blue: '#a1bfe0'
magenta: '#c595b8'
cyan: '#516585'
white: '#e3ddd8'
bright:
black: '#373e48'
red: '#ffaf8a'
green: '#4fa579'
yellow: '#f0da87'
blue: '#a1bfe0'
magenta: '#c595b8'
cyan: '#516585'
white: '#e3ddd8'
selection:
save_to_clipboard: true
cursor:
style: Block
unfocused_hollow: true
live_config_reload: true
shell:
program: /usr/local/bin/zsh
args:
- --login
alt_send_esc: true
key_bindings:
- { key: Paste, action: Paste }
- { key: Copy, action: Copy }
- { key: L, mods: Control, action: ClearLogNotice }
- { key: PageUp, mods: Shift, mode: ~Alt, action: ScrollPageUp, }
- { key: PageDown, mods: Shift, mode: ~Alt, action: ScrollPageDown }
- { key: Home, mods: Shift, mode: ~Alt, action: ScrollToTop, }
- { key: End, mods: Shift, mode: ~Alt, action: ScrollToBottom }
# (macOS only)
- { key: Key0, mods: Command, action: ResetFontSize }
- { key: Equals, mods: Command, action: IncreaseFontSize }
- { key: Add, mods: Command, action: IncreaseFontSize }
- { key: Minus, mods: Command, action: DecreaseFontSize }
- { key: K, mods: Command, action: ClearHistory }
- { key: V, mods: Command, action: Paste }
- { key: C, mods: Command, action: Copy }
- { key: H, mods: Command, action: Hide }
- { key: M, mods: Command, action: Minimize }
- { key: Q, mods: Command, action: Quit }
- { key: W, mods: Command, action: Quit }
- { key: N, mods: Command, action: SpawnNewInstance }
- { key: F, mods: Control, action: ToggleFullscreen }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment