diff options
author | aktersnurra <grydholm@kth.se> | 2021-02-07 14:29:29 +0100 |
---|---|---|
committer | aktersnurra <grydholm@kth.se> | 2021-02-07 14:29:29 +0100 |
commit | 90ed26fa905edb41e69fe3b3f8d92096a23aa40f (patch) | |
tree | ca07f74cf61071af269dd888cc5e2b5ddfba4a13 /.config | |
parent | a141ebd317c7e5bfadd4184bd33801fbec1732d3 (diff) |
Add alacritty config
Diffstat (limited to '.config')
-rw-r--r-- | .config/alacritty/alacritty.yml | 107 |
1 files changed, 107 insertions, 0 deletions
diff --git a/.config/alacritty/alacritty.yml b/.config/alacritty/alacritty.yml new file mode 100644 index 0000000..540b3fd --- /dev/null +++ b/.config/alacritty/alacritty.yml @@ -0,0 +1,107 @@ +draw_bold_text_with_bright_colors: true + +colors: + primary: + background: '#2e3440' + foreground: '#d8dee9' + dim_foreground: '#a5abb6' + cursor: + text: '#2e3440' + cursor: '#d8dee9' + vi_mode_cursor: + text: '#2e3440' + cursor: '#d8dee9' + selection: + text: CellForeground + background: '#4c566a' + search: + matches: + foreground: CellBackground + background: '#88c0d0' + bar: + background: '#434c5e' + foreground: '#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' + dim: + black: '#373e4d' + red: '#94545d' + green: '#809575' + yellow: '#b29e75' + blue: '#68809a' + magenta: '#8c738c' + cyan: '#6d96a5' + white: '#aeb3bb' + +background_opacity: 0.9 + +font: + # The normal (roman) font face to use. + normal: + family: Fira Code + # Style can be specified to pick a specific face. + style: Regular + + # The bold font face + bold: + family: Fira Code + # Style can be specified to pick a specific face. + # style: Bold + + # The italic font face + italic: + family: Fira Code + # Style can be specified to pick a specific face. + # style: Italic + size: 15.0 + + 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 + decorations: none + # # 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 } + - { key: N, mods: Control, action: SpawnNewInstance } |