Last active
July 6, 2020 23:35
-
-
Save Jswizzy/19e19502532dcc497d75d3685b8c5227 to your computer and use it in GitHub Desktop.
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
env: | |
# TERM variable | |
# | |
# This value is used to set the `$TERM` environment variable for | |
# each instance of Alacritty. If it is not present, alacritty will | |
# check the local terminfo database and use `alacritty` if it is | |
# available, otherwise `xterm-256color` is used. | |
TERM: xterm-256color | |
# Background opacity | |
background_opacity: 0.9 | |
window: | |
decorations: none | |
# Window dimensions (changes require restart) | |
# | |
# Specified in number of columns/lines, not pixels. | |
# If both are `0`, this setting is ignored. | |
dimensions: | |
columns: 80 | |
lines: 24 | |
# Window position (changes require restart) | |
# | |
# Specified in number of pixels. | |
# If the position is not set, the window manager will handle the placement. | |
position: | |
x: 0 | |
y: 0 | |
# Window padding (changes require restart) | |
# | |
# Blank space added around the window in pixels. This padding is scaled | |
# by DPI and the specified value is always added at both opposing sides. | |
padding: | |
x: 8 | |
y: 8 | |
custom_cursor_colors: true | |
# colors: | |
# primary: | |
# background: "0x191919" | |
# foreground: "0xeaeaea" | |
# cursor: | |
# text: "0xf1c1c1" | |
# cursor: "0xff2600" | |
# Copyright (c) 2017-present Arctic Ice Studio <[email protected]> | |
# Copyright (c) 2017-present Sven Greb <[email protected]> | |
# Project: Nord Alacritty | |
# Version: 0.1.0 | |
# Repository: https://github.com/arcticicestudio/nord-alacritty | |
# License: MIT | |
# References: | |
# https://github.com/jwilm/alacritty | |
colors: | |
primary: | |
background: "0x2E3440" | |
foreground: "0xD8DEE9" | |
cursor: | |
text: "0x2E3440" | |
cursor: "0xD8DEE9" | |
normal: | |
black: "0x3B4252" | |
red: "0xBF616A" | |
green: "0xA3BE8C" | |
yellow: "0xEBCB8B" | |
blue: "0x81A1C1" | |
magenta: "0xB48EAD" | |
cyan: "0x88C0D0" | |
white: "0xE5E9F0" | |
bright: | |
black: "0x4C566A" | |
red: "0xBF616A" | |
green: "0xA3BE8C" | |
yellow: "0xEBCB8B" | |
blue: "0x81A1C1" | |
magenta: "0xB48EAD" | |
cyan: "0x8FBCBB" | |
white: "0xECEFF4" | |
font: | |
normal: | |
family: JetBrainsMono Nerd Font | |
style: Regular | |
bold: | |
family: JetBrainsMono Nerd Font | |
style: Bold | |
italic: | |
family: JetBrainsMono Nerd Font | |
style: Italic | |
# Point size | |
size: 11.0 | |
scrolling: | |
# Maximum number of lines in the scrollback buffer. | |
# Specifying '0' will disable scrolling. | |
history: 10000 | |
# If `true`, bold text is drawn using the bright color variants. | |
draw_bold_text_with_bright_colors: true | |
selection: | |
semantic_escape_chars: ',│`|:"'' ()[]{}<>' | |
# When set to `true`, selected text will be copied to the primary clipboard. | |
save_to_clipboard: false | |
# Allow terminal applications to change Alacritty's window title. | |
dynamic_title: true | |
cursor: | |
# Cursor style | |
# | |
# Values for `style`: | |
# - ▇ Block | |
# - _ Underline | |
# - | Beam | |
style: Block | |
# If this is `true`, the cursor will be rendered as a hollow box when the | |
# window is not focused. | |
unfocused_hollow: true | |
# Live config reload (changes require restart) | |
live_config_reload: true |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment