# Configuration for Alacritty, the GPU enhanced terminal emulator. env: TERM: alacritty # TERM: xterm-256color window: padding: x: 2 y: 2 dynamic_padding: false decorations: none title: Alacritty class: instance: Alacritty general: Alacritty gtk_theme_variant: dark dynamic_title: true scrolling: history: 50000 multiplier: 5 font: normal: family: Iosevka Nerd Font style: Regular bold: family: Iosevka Nerd Font style: Bold italic: family: Iosevka Nerd Font style: Italic bold_italic: family: Iosevka Nerd Font style: Bold Italic size: 12 offset: x: 0 y: 0 glyph_offset: x: 0 y: 0 draw_bold_text_with_bright_colors: false colors: # --- Nord --- # primary: background: '#2e3440' foreground: '#d8dee9' cursor: text: '#2e3440' cursor: '#d8dee9' selection: text: '#2e3440' background: '#d8dee9' normal: black: '#3b4252' red: '#bf616a' green: '#a3be8c' yellow: '#ebcb8b' blue: '#81a1c1' magenta: '#b48ead' cyan: '#88c0d0' white: '#e5e9f0' bright: black: '#4c566a' red: '#bf616a' green: '#a3be8c' yellow: '#ebcb8b' blue: '#81a1c1' magenta: '#b48ead' cyan: '#8fbcbb' white: '#eceff4' # -- OneDark -- # # primary: # background: '#282c34' # foreground: '#abb2bf' # cursor: # text: '#282c34' # cursor: '#bbc2cf' # selection: # text: '#282c34' # background: '#abb2bf' # normal: # black: '#282c34' # red: '#be5046' # green: '#98c379' # yellow: '#d19a66' # blue: '#61afef' # magenta: '#c678dd' # cyan: '#56b6c2' # white: '#abb2bf' # bright: # black: '#3e4452' # red: '#e06c75' # green: '#98c379' # yellow: '#e5c07b' # blue: '#61afef' # magenta: '#c678dd' # cyan: '#56b6c2' # white: '#bbc2cf' background_opacity: 1.0 selection: #semantic_escape_chars: ",│`|:\"' ()[]{}<>\t" # When set to `true`, selected text will be copied to the primary clipboard. save_to_clipboard: false cursor: # Cursor style # # Values for `style`: # - ▇ Block # - _ Underline # - | Beam style: Block #vi_mode_style: None # 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: false #shell: # program: /bin/bash # args: # - --login # Startup directory # # Directory the shell is started in. If this is unset, or `None`, the working # directory of the parent process will be used. working_directory: None # Send ESC (\x1b) before characters when alt is pressed. #alt_send_esc: true mouse: # Click settings # # The `double_click` and `triple_click` settings control the time # alacritty should wait for accepting multiple clicks as one double # or triple click. double_click: { threshold: 300 } triple_click: { threshold: 300 } # If this is `true`, the cursor is temporarily hidden when typing. hide_when_typing: true url: # URL launcher # # This program is executed when clicking on a text which is recognized as a URL. # The URL is always added to the command as the last parameter. # # When set to `None`, URL launching will be disabled completely. # # Default: # - (macOS) open # - (Linux/BSD) xdg-open # - (Windows) explorer launcher: program: xdg-open args: [] # URL modifiers # # These are the modifiers that need to be held down for opening URLs when clicking # on them. The available modifiers are documented in the key binding section. modifiers: None # Mouse bindings # # Mouse bindings are specified as a list of objects, much like the key # bindings further below. # # To trigger mouse bindings when an application running within Alacritty captures the mouse, the # `Shift` modifier is automatically added as a requirement. # # Each mouse binding will specify a: # # - `mouse`: # # - Middle # - Left # - Right # - Numeric identifier such as `5` # # - `action` (see key bindings) # # And optionally: # # - `mods` (see key bindings) mouse_bindings: - { mouse: Middle, action: PasteSelection } # Key bindings # # Key bindings are specified as a list of objects. For example, this is the # default paste binding: # # `- { key: V, mods: Control|Shift, action: Paste }` # # Each key binding will specify a: # # - `key`: Identifier of the key pressed # # - A-Z # - F1-F24 # - Key0-Key9 # # A full list with available key codes can be found here: # https://docs.rs/glutin/*/glutin/event/enum.VirtualKeyCode.html#variants # # Instead of using the name of the keys, the `key` field also supports using # the scancode of the desired key. Scancodes have to be specified as a # decimal number. This command will allow you to display the hex scancodes # for certain keys: # # `showkey --scancodes`. # # Then exactly one of: # # - `chars`: Send a byte sequence to the running application # # The `chars` field writes the specified string to the terminal. This makes # it possible to pass escape sequences. To find escape codes for bindings # like `PageUp` (`"\x1b[5~"`), you can run the command `showkey -a` outside # of tmux. Note that applications use terminfo to map escape sequences back # to keys. It is therefore required to update the terminfo when changing an # escape sequence. # # - `action`: Execute a predefined action # # - Copy # - Paste # - PasteSelection # - IncreaseFontSize # - DecreaseFontSize # - ResetFontSize # - ScrollPageUp # - ScrollPageDown # - ScrollLineUp # - ScrollLineDown # - ScrollToTop # - ScrollToBottom # - ClearHistory # - Hide # - Minimize # - Quit # - ToggleFullscreen # - SpawnNewInstance # - ClearLogNotice # - ReceiveChar # - None # # (macOS only): # - ToggleSimpleFullscreen: Enters fullscreen without occupying another space # # - `command`: Fork and execute a specified command plus arguments # # The `command` field must be a map containing a `program` string and an # `args` array of command line parameter strings. For example: # `{ program: "alacritty", args: ["-e", "vttest"] }` # # And optionally: # # - `mods`: Key modifiers to filter binding actions # # - Command # - Control # - Option # - Super # - Shift # - Alt # # Multiple `mods` can be combined using `|` like this: # `mods: Control|Shift`. # Whitespace and capitalization are relevant and must match the example. # # - `mode`: Indicate a binding for only specific terminal reported modes # # This is mainly used to send applications the correct escape sequences # when in different modes. # # - AppCursor # - AppKeypad # - Alt # # A `~` operator can be used before a mode to apply the binding whenever # the mode is *not* active, e.g. `~Alt`. # # Bindings are always filled by default, but will be replaced when a new # binding with the same triggers is defined. To unset a default binding, it can # be mapped to the `ReceiveChar` action. Alternatively, you can use `None` for # a no-op if you do not wish to receive input characters for that binding. # # If the same trigger is assigned to multiple actions, all of them are executed # at once. key_bindings: - { key: V, mods: Control|Shift, action: Paste } - { key: C, mods: Control|Shift, action: Copy } - { key: Insert, mods: Shift, action: PasteSelection } - { key: Key0, mods: Control, action: ResetFontSize } - { key: Equals, mods: Control, action: IncreaseFontSize } - { key: Minus, mods: Control, action: DecreaseFontSize } - { key: Paste, action: Paste } - { key: Copy, action: Copy } - { key: L, mods: Control, action: ClearLogNotice } - { key: L, mods: Control, chars: "\x0c" } - { key: PageUp, mods: Shift, action: ScrollPageUp, mode: ~Alt } - { key: PageDown, mods: Shift, action: ScrollPageDown, mode: ~Alt } - { key: Home, mods: Shift, action: ScrollToTop, mode: ~Alt } - { key: End, mods: Shift, action: ScrollToBottom, mode: ~Alt } # Vi Mode - { key: Space, mods: Shift|Control, mode: Vi, action: ScrollToBottom } - { key: Space, mods: Shift|Control, action: ToggleViMode } - { key: Escape, mode: Vi, action: ClearSelection } - { key: I, mode: Vi, action: ScrollToBottom } - { key: I, mode: Vi, action: ToggleViMode } - { key: Y, mods: Control, mode: Vi, action: ScrollLineUp } - { key: E, mods: Control, mode: Vi, action: ScrollLineDown } - { key: G, mode: Vi, action: ScrollToTop } - { key: G, mods: Shift, mode: Vi, action: ScrollToBottom } - { key: B, mods: Control, mode: Vi, action: ScrollPageUp } - { key: F, mods: Control, mode: Vi, action: ScrollPageDown } - { key: U, mods: Control, mode: Vi, action: ScrollHalfPageUp } - { key: D, mods: Control, mode: Vi, action: ScrollHalfPageDown } - { key: Y, mode: Vi, action: Copy } - { key: Y, mode: Vi, action: ClearSelection } - { key: Copy, mode: Vi, action: ClearSelection } - { key: V, mode: Vi, action: ToggleNormalSelection } - { key: V, mods: Shift, mode: Vi, action: ToggleLineSelection } - { key: V, mods: Control, mode: Vi, action: ToggleBlockSelection } - { key: V, mods: Alt, mode: Vi, action: ToggleSemanticSelection } - { key: Return, mode: Vi, action: Open } - { key: K, mode: Vi, action: Up } - { key: J, mode: Vi, action: Down } - { key: H, mode: Vi, action: Left } - { key: L, mode: Vi, action: Right } - { key: Up, mode: Vi, action: Up } - { key: Down, mode: Vi, action: Down } - { key: Left, mode: Vi, action: Left } - { key: Right, mode: Vi, action: Right } - { key: Key0, mode: Vi, action: First } - { key: Key4, mods: Shift, mode: Vi, action: Last } - { key: Key6, mods: Shift, mode: Vi, action: FirstOccupied } - { key: H, mods: Shift, mode: Vi, action: High } - { key: M, mods: Shift, mode: Vi, action: Middle } - { key: L, mods: Shift, mode: Vi, action: Low } - { key: B, mode: Vi, action: SemanticLeft } - { key: W, mode: Vi, action: SemanticRight } - { key: E, mode: Vi, action: SemanticRightEnd } - { key: B, mods: Shift, mode: Vi, action: WordLeft } - { key: W, mods: Shift, mode: Vi, action: WordRight } - { key: E, mods: Shift, mode: Vi, action: WordRightEnd } - { key: Key5, mods: Shift, mode: Vi, action: Bracket } - { key: Slash, mode: Vi, action: SearchForward } - { key: Slash, mods: Shift, mode: Vi, action: SearchBackward } - { key: N, mode: Vi, action: SearchNext } - { key: N, mods: Shift, mode: Vi, action: SearchPrevious } debug: render_timer: false persistent_logging: false # Log level # # Values for `log_level`: # - None # - Error # - Warn # - Info # - Debug # - Trace log_level: Warn print_events: false