diff options
Diffstat (limited to '.config/alacritty/alacritty.yml.orig')
| -rw-r--r-- | .config/alacritty/alacritty.yml.orig | 88 |
1 files changed, 88 insertions, 0 deletions
diff --git a/.config/alacritty/alacritty.yml.orig b/.config/alacritty/alacritty.yml.orig new file mode 100644 index 0000000..b2c6d37 --- /dev/null +++ b/.config/alacritty/alacritty.yml.orig @@ -0,0 +1,88 @@ +# Colors (One Darker) +colors: + # Default colors + primary: + background: "#1e2127" + foreground: "#abb2bf" + # + # Normal colors + normal: + black: "#1e2127" + red: "#e06c75" + green: "#98c379" + yellow: "#d19a66" + blue: "#61afef" + magenta: "#c678dd" + cyan: "#56b6c2" + white: "#abb2bf" + + # Bright colors + bright: + black: "#5c6370" + red: "#e06c75" + green: "#98c379" + yellow: "#d19a66" + blue: "#61afef" + magenta: "#c678dd" + cyan: "#56b6c2" + white: "#ffffff" + +background_opacity: 0.8 + +font: + normal: + family: "Hack" + style: Regular + bold: + family: "Hack" + style: Bold + italic: + family: "Hack" + style: Italic + bold_italic: + family: "Hack" + style: Bold Italic + + # Point size + size: 12.0 + + offset: + x: 0 + y: 0 + +window: + padding: + x: 2 + y: 2 + +scrolling: + # Maximum number of lines in the scrollback buffer. + # Specifying '0' will disable scrolling. + history: 10000 + + # Number of lines the viewport will move for every line scrolled when + # scrollback is enabled (history > 0). + multiplier: 10 + +# 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 both the primary and + # the selection clipboard. Otherwise, it will only be copied to the selection + # clipboard. + save_to_clipboard: true + +# Live config reload (changes require restart) +live_config_reload: true + +key_bindings: + - { key: V, mods: Control|Shift, action: Paste } + - { key: C, mods: Control|Shift, action: Copy } + - { key: Key0, mods: Control, action: ResetFontSize } + - { key: Equals, mods: Control, action: IncreaseFontSize } + - { key: Add, mods: Control, action: IncreaseFontSize } + - { key: Subtract, mods: Control, action: DecreaseFontSize } + - { key: Minus, mods: Control, action: DecreaseFontSize } |
