Created
August 29, 2025 03:00
-
-
Save pszemraj/0a84b041e1ddb294f5f4580ba03bb40c to your computer and use it in GitHub Desktop.
config for alacritty+0xProto
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
| # Font configuration - all font settings in ONE section | |
| [font] | |
| size = 15.0 | |
| builtin_box_drawing = false # 0xProto has its own box drawing chars | |
| [font.normal] | |
| family = "0xProto" | |
| style = "Regular" | |
| [font.bold] | |
| style = "Regular" # 0xProto doesn't need bold | |
| [font.italic] | |
| style = "Italic" | |
| # Cursor - I-beam | |
| [cursor] | |
| style = { shape = "Beam", blinking = "Always" } | |
| blink_interval = 500 | |
| unfocused_hollow = false | |
| # Selection | |
| [selection] | |
| save_to_clipboard = true | |
| semantic_escape_chars = ",│`|:\"' ()[]{}<>\t" | |
| # Performance | |
| [scrolling] | |
| history = 100000 | |
| multiplier = 3 | |
| # Window | |
| [window] | |
| padding = { x = 6, y = 6 } | |
| decorations = "Full" | |
| opacity = 0.98 | |
| blur = true | |
| # Colors | |
| [colors.primary] | |
| background = '#0d1117' | |
| foreground = '#c9d1d9' | |
| [colors.cursor] | |
| cursor = '#58a6ff' | |
| text = '#0d1117' | |
| # Key bindings | |
| [[keyboard.bindings]] | |
| key = "V" | |
| mods = "Control|Shift" | |
| action = "Paste" | |
| [[keyboard.bindings]] | |
| key = "C" | |
| mods = "Control|Shift" | |
| action = "Copy" | |
| [[keyboard.bindings]] | |
| key = "N" | |
| mods = "Control|Shift" | |
| action = "SpawnNewInstance" | |
| [[keyboard.bindings]] | |
| key = "Plus" | |
| mods = "Control" | |
| action = "IncreaseFontSize" | |
| [[keyboard.bindings]] | |
| key = "Minus" | |
| mods = "Control" | |
| action = "DecreaseFontSize" | |
| [terminal] | |
| # Shell | |
| [terminal.shell] | |
| program = "/usr/bin/zsh" | |
| args = ["-l"] |
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
| wget https://github.com/0xType/0xProto/releases/download/2.100/0xProto_2_100.zip | |
| unzip 0xProto_2_100.zip -d ~/.local/share/fonts/ | |
| fc-cache -fv |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment