From 70188517ef6eed409f38ba2c30b91d8fcc283d17 Mon Sep 17 00:00:00 2001 From: Cameron Miller Date: Fri, 22 Oct 2021 14:59:31 +0000 Subject: [PATCH] Upload basic Alacritty config --- alacritty.yml | 83 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 83 insertions(+) create mode 100644 alacritty.yml diff --git a/alacritty.yml b/alacritty.yml new file mode 100644 index 0000000..ff77fbd --- /dev/null +++ b/alacritty.yml @@ -0,0 +1,83 @@ +# Configuration for Alacritty, the GPU enhanced terminal emulator. + +# Shell +# +# You can set `shell.program` to the path of your favorite shell, e.g. +# `/bin/fish`. Entries in `shell.args` are passed unmodified as arguments to the +# shell. +# +shell: + program: /usr/bin/zsh # Change this depending on where Zsh installed to, which zsh should give you a readout of where zsh is installed to. + +# Live config reload (changes require restart) + live_config_reload: true + +env: + TERM: alacritty + +window: + # Window padding (changes require restart) + padding: + x: 2 + y: 2 + + # Window title + title: Alacritty + + # Allow terminal applications to change Alacritty's window title. + dynamic_title: true + + # Window class (Linux/BSD only): + class: + # Application instance name + instance: Alacritty + # General application class + general: Alacritty + +# Font configuration +font: + # Normal (roman) font face + normal: + family: monospace + style: Regular + + # Bold font face + bold: + family: monospace + style: Bold + + # Italic font face + italic: + family: monospace + style: Italic + + # Bold italic font face + bold_italic: + family: monospace + style: Bold Italic + + # Point size + size: 11.0 + + # If `true`, bold text is drawn using the bright color variants. + draw_bold_text_with_bright_colors: true + + # Background opacity + background_opacity: 0.85 + +cursor: + # Cursor style + style: + # Values for `shape`: + # - ▇ Block + # - _ Underline + # - | Beam + shape: Beam + # Cursor blinking state + # + # Values for `blinking`: + # - Never: Prevent the cursor from ever blinking + # - Off: Disable blinking by default + # - On: Enable blinking by default + # - Always: Force the cursor to always blink + blinking: On