Last active
December 31, 2023 09:00
-
-
Save lucidfrontier45/0bf6d0100b07d0df221ccfd1e6e268ab to your computer and use it in GitHub Desktop.
alacritty.toml
This file contains hidden or 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
# Campbell (Windows 10 default) | |
# Default colors | |
[colors.primary] | |
background = '#0c0c0c' | |
foreground = '#cccccc' | |
# Normal colors | |
[colors.normal] | |
black = '#0c0c0c' | |
red = '#c50f1f' | |
green = '#13a10e' | |
yellow = '#c19c00' | |
blue = '#0037da' | |
magenta = '#881798' | |
cyan = '#3a96dd' | |
white = '#cccccc' | |
# Bright colors | |
[colors.bright] | |
black = '#767676' | |
red = '#e74856' | |
green = '#16c60c' | |
yellow = '#f9f1a5' | |
blue = '#3b78ff' | |
magenta = '#b4009e' | |
cyan = '#61d6d6' | |
white = '#f2f2f2' | |
[font] | |
size = 13 | |
[[keyboard.bindings]] | |
action = "SpawnNewInstance" | |
key = "N" | |
mods = "Control|Shift" | |
[mouse] | |
hide_when_typing = false | |
[[mouse.bindings]] | |
action = "Paste" | |
mouse = "Right" | |
[selection] | |
save_to_clipboard = true | |
[window] | |
opacity = 0.95 | |
[window.dimensions] | |
columns = 100 | |
lines = 45 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment