diff options
| author | Vito Graffagnino <vito@graffagnino.xyz> | 2020-09-08 18:10:49 +0100 |
|---|---|---|
| committer | Vito Graffagnino <vito@graffagnino.xyz> | 2020-09-08 18:10:49 +0100 |
| commit | 3b0142cedcde39e4c2097ecd916a870a3ced5ec6 (patch) | |
| tree | 2116c49a845dfc0945778f2aa3e2118d72be428b /.config/alacritty/alacritty.yml.orig | |
| parent | 8cc927e930d5b6aafe3e9862a61e81705479a1b4 (diff) | |
Added the relevent parts of the .config directory. Alss add ssh config
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 } |
