From bfb26e1dddfb7399074f113dbff1df35d3e2db49 Mon Sep 17 00:00:00 2001 From: Shubham Saini Date: Thu, 28 May 2020 19:58:43 +0530 Subject: changed a lot --- alacritty/.config/alacritty/alacritty.yml | 96 +++++++++++++++++++++---------- 1 file changed, 66 insertions(+), 30 deletions(-) (limited to 'alacritty/.config') diff --git a/alacritty/.config/alacritty/alacritty.yml b/alacritty/.config/alacritty/alacritty.yml index 21ee0f5..85e940b 100644 --- a/alacritty/.config/alacritty/alacritty.yml +++ b/alacritty/.config/alacritty/alacritty.yml @@ -1,51 +1,87 @@ -# Colors (Ayu Dark) colors: # Default colors primary: - background: '0x0A0E14' - foreground: '0xB3B1AD' + background: "#000000" + foreground: "#D8DEE9" # Normal colors normal: - black: '0x01060E' - red: '0xEA6C73' - green: '0x91B362' - yellow: '0xF9AF4F' - blue: '0x53BDFA' - magenta: '0xFAE994' - cyan: '0x90E1C6' - white: '0xC7C7C7' + black: "#3B4252" + red: "#BF616A" + green: "#A3BE8C" + yellow: "#EBCB8B" + blue: "#81A1C1" + magenta: "#B48EAD" + cyan: "#88C0D0" + white: "#abb2bf" # Bright colors bright: - black: '0x686868' - red: '0xF07178' - green: '0xC2D94C' - yellow: '0xFFB454' - blue: '0x59C2FF' - magenta: '0xFFEE99' - cyan: '0x95E6CB' - white: '0xFFFFFF' + black: "#5c6370" + red: "#e06c75" + green: "#98c379" + yellow: "#d19a66" + blue: "#61afef" + magenta: "#c678dd" + cyan: "#56b6c2" + white: "#ECEFF4" + +background_opacity: 1.0 font: - # Normal (roman) font face normal: - # Font family - # - # Default: - # - (macOS) Menlo - # - (Linux) monospace - # - (Windows) Consolas - family: 'Hermit' - - # The `style` can be specified to pick a specific face. + family: "ASM-Regular" style: Regular + bold: + family: "ASM-Bold" + style: Bold + italic: + family: "ASM-RegularItalic" + style: Italic + bold_italic: + family: "ASM-BoldItalic" + style: Bold Italic # Point size - size: 8.5 + size: 9.0 + antialias: true + autohint: true offset: x: 0 y: 0 + glyph_offset: + x: 0 + y: 0 + +window: + padding: + x: 8 + y: 8 + +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: ',│`|:"'' ()[]{}<>' + save_to_clipboard: true +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 } -- cgit v1.2.3