Last active
October 29, 2023 12:41
-
-
Save sjustesen/f0b36e1f921313d8b0729115bddc4a64 to your computer and use it in GitHub Desktop.
My Alacritty config
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
live_config_reload: true | |
window: | |
opacity: 0.9 | |
dimensions: | |
columns: 120 | |
lines: 30 | |
font: | |
size: 13 | |
key_bindings: | |
- { key: V, mods: Control, action: Paste } | |
- { key: C, mods: Control, action: Copy } | |
- { key: Insert, mods: Shift, action: PasteSelection } | |
- { key: Home, chars: "\x1bOH", mode: AppCursor } | |
- { key: Home, chars: "\x1b[H", mode: ~AppCursor } | |
- { key: End, chars: "\x1bOF", mode: AppCursor } | |
- { key: End, chars: "\x1b[F", mode: ~AppCursor } | |
- { key: PageUp, mods: Shift, chars: "\x1b[5;2~" } | |
- { key: PageUp, mods: Control, chars: "\x1b[5;5~" } | |
- { key: PageUp, chars: "\x1b[5~" } | |
- { key: PageDown, mods: Shift, chars: "\x1b[6;2~" } | |
- { key: N, mods: Control, action: SpawnNewInstance } | |
colors: | |
primary: | |
background: "#1E1E2E" # base | |
foreground: "#CDD6F4" # text | |
# Bright and dim foreground colors | |
dim_foreground: "#CDD6F4" # text | |
bright_foreground: "#CDD6F4" # text | |
# Cursor colors | |
cursor: | |
text: "#1E1E2E" # base | |
cursor: "#F5E0DC" # rosewater | |
vi_mode_cursor: | |
text: "#1E1E2E" # base | |
cursor: "#B4BEFE" # lavender | |
# Search colors | |
search: | |
matches: | |
foreground: "#1E1E2E" # base | |
background: "#A6ADC8" # subtext0 | |
focused_match: | |
foreground: "#1E1E2E" # base | |
background: "#A6E3A1" # green | |
footer_bar: | |
foreground: "#1E1E2E" # base | |
background: "#A6ADC8" # subtext0 | |
# Keyboard regex hints | |
hints: | |
start: | |
foreground: "#1E1E2E" # base | |
background: "#F9E2AF" # yellow | |
end: | |
foreground: "#1E1E2E" # base | |
background: "#A6ADC8" # subtext0 | |
# Selection colors | |
selection: | |
text: "#1E1E2E" # base | |
background: "#F5E0DC" # rosewater | |
# Normal colors | |
normal: | |
black: "#45475A" # surface1 | |
red: "#F38BA8" # red | |
green: "#A6E3A1" # green | |
yellow: "#F9E2AF" # yellow | |
blue: "#89B4FA" # blue | |
magenta: "#F5C2E7" # pink | |
cyan: "#94E2D5" # teal | |
white: "#BAC2DE" # subtext1 | |
# Bright colors | |
bright: | |
black: "#585B70" # surface2 | |
red: "#F38BA8" # red | |
green: "#A6E3A1" # green | |
yellow: "#F9E2AF" # yellow | |
blue: "#89B4FA" # blue | |
magenta: "#F5C2E7" # pink | |
cyan: "#94E2D5" # teal | |
white: "#A6ADC8" # subtext0 | |
# Dim colors | |
dim: | |
black: "#45475A" # surface1 | |
red: "#F38BA8" # red | |
green: "#A6E3A1" # green | |
yellow: "#F9E2AF" # yellow | |
blue: "#89B4FA" # blue | |
magenta: "#F5C2E7" # pink | |
cyan: "#94E2D5" # teal | |
white: "#BAC2DE" # subtext1 | |
indexed_colors: | |
- { index: 16, color: "#FAB387" } | |
- { index: 17, color: "#F5E0DC" } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment