Last active
March 16, 2022 17:30
-
-
Save cfsanderson-fulcrum/a9f868fe3d8c6b792d6ff6ac5ae27c5c to your computer and use it in GitHub Desktop.
Alacritty conf
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
#============================================================================== | |
# __ _ __ __ | |
# ____ _/ /___ ___________(_) /_/ /___ __ | |
# / __ `/ / __ `/ ___/ ___/ / __/ __/ / / / | |
# / /_/ / / /_/ / /__/ / / / /_/ /_/ /_/ / | |
# \__,_/_/\__,_/\___/_/ /_/\__/\__/\__, / | |
# /____/ | |
#============================================================================== | |
# @cfsanderson | |
import: | |
- ~/.config/alacritty/colors.yml | |
- ~/.config/alacritty/fonts.yml | |
# Window Customizations | |
window: | |
dimensions: | |
columns: 118 | |
lines: 30 | |
position: | |
x: 0 | |
y: 0 | |
padding: | |
x: 25 | |
y: 25 | |
decorations: buttonless | |
startup_mode: Maximized | |
scrolling: | |
history: 10000 | |
multiplier: 3 | |
window.opacity: 1 | |
title: cfsanderson | |
cursor: | |
style: Block | |
unfocused_hollow: true | |
key_bindings: | |
- { key: N, mods: Control|Shift, action: SpawnNewInstance } | |
bar: | |
background: "#c5c8c6" | |
foreground: "#1d1f21" | |
shell: | |
program: /bin/zsh | |
args: | |
- --login | |
key_bindings: | |
- { key: PageUp, mods: Shift, action: ScrollPageUp } | |
- { key: PageDown, mods: Shift, action: ScrollPageDown } | |
- { key: End, mods: Shift, action: ScrollToBottom } | |
- { key: Home, mods: Shift, action: ScrollToTop } |
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
# Colors (ported from iTerm2 - sort of Material Gruvbox) | |
colors: | |
primary: | |
background: "#0b0d0f" | |
foreground: "#e1d7c7" | |
# Normal colors | |
normal: | |
black: "#3c3836" | |
red: "#b85651" | |
green: "#8f9a52" | |
yellow: "#c18f41" | |
blue: "#68948a" | |
magenta: "#ab6c7d" | |
cyan: "#72966c" | |
white: "#ada291" | |
# Bright colors | |
bright: | |
black: "#5a524c" | |
red: "#b85651" | |
green: "#a9b665" | |
yellow: "#d8a657" | |
blue: "#7daea3" | |
magenta: "#d3869b" | |
cyan: "#89b482" | |
white: "#dcc6a3" | |
selection: | |
text: "0xffffff" | |
background: "0x0b0d0f" | |
white: "0xffffff" |
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 | |
font: | |
normal: | |
family: FiraCode Nerd Font | |
style: Regular | |
bold: | |
family: FiraCode Nerd Font | |
style: Bold | |
italic: | |
family: FiraCode Nerd Font | |
family: JetBrains Mono | |
style: Italic | |
bold_italic: | |
family: JetBrains Mono | |
style: Bold Italic | |
size: 13.0 | |
offset: | |
x: 0 | |
y: 0 | |
glyph_offset: | |
x: 0 | |
y: 0 | |
debug: | |
persistent_logging: false | |
draw_bold_text_with_bright_colors: true |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment