diff options
author | Thanos Apollo <[email protected]> | 2023-02-08 01:43:15 +0200 |
---|---|---|
committer | GitHub <[email protected]> | 2023-02-08 01:43:15 +0200 |
commit | 558a2b9d767203c52cd0ae35b508e2069f99d145 (patch) | |
tree | 364d15ab883570354948832702884416eb1d0e97 /.config/alacritty | |
parent | 7e4fc1d1eb857c6ec21404968d9da0e3162a9bb9 (diff) | |
parent | cf1b785be36c10c7d098363b4a8e26f566f216a7 (diff) |
Merge pull request #2 from ThanosApollo/update-doc
Update doc
Diffstat (limited to '.config/alacritty')
-rw-r--r-- | .config/alacritty/alacritty.yml | 96 |
1 files changed, 51 insertions, 45 deletions
diff --git a/.config/alacritty/alacritty.yml b/.config/alacritty/alacritty.yml index fbb5849..343ae34 100644 --- a/.config/alacritty/alacritty.yml +++ b/.config/alacritty/alacritty.yml @@ -8,9 +8,8 @@ # # All imports must either be absolute paths starting with `/`, or paths relative # to the user's home directory starting with `~/`. -import: - - ~/.config/alacritty/colorschemes/dracula.yaml - +#import: +# - /path/to/alacritty.yml # Any items in the `env` entry below will be added as # environment variables. Some entries may override variables @@ -24,7 +23,7 @@ import: # available, otherwise `xterm-256color` is used. #TERM: alacritty -window: +#window: # Window dimensions (changes require restart) # # Number of lines/columns (not pixels) in the terminal. The number of columns @@ -68,7 +67,7 @@ window: # # Window opacity as a floating point number from `0.0` to `1.0`. # The value `0.0` is completely transparent and `1.0` is opaque. - opacity: 0.80 + opacity: 1.0 # Startup Mode (changes require restart) # @@ -100,64 +99,64 @@ window: # and `light`. Set this to `None` to use the default theme variant. #gtk_theme_variant: None -scrolling: +#scrolling: # Maximum number of lines in the scrollback buffer. # Specifying '0' will disable scrolling. - history: 50000 + #history: 10000 # Scrolling distance multiplier. #multiplier: 3 # Font configuration -font: +#font: # Normal (roman) font face - normal: + #normal: # Font family # # Default: # - (macOS) Menlo # - (Linux/BSD) monospace # - (Windows) Consolas - family: JetBrains Mono + #family: monospace # The `style` can be specified to pick a specific face. - style: Regular + #style: Regular # Bold font face - bold: + #bold: # Font family # # If the bold family is not specified, it will fall back to the # value specified for the normal font. - family: JetBrains Mono + #family: monospace # The `style` can be specified to pick a specific face. - style: Bold + #style: Bold # Italic font face - italic: + #italic: # Font family # # If the italic family is not specified, it will fall back to the # value specified for the normal font. - family: JetBrains Mono + #family: monospace # The `style` can be specified to pick a specific face. - style: Italic + #style: Italic # Bold italic font face - bold_italic: + #bold_italic: # Font family # # If the bold italic family is not specified, it will fall back to the # value specified for the normal font. - family: JetBrains Mono + #family: monospace # The `style` can be specified to pick a specific face. - style: Bold Italic + #style: Bold Italic # Point size - size: 12.0 + #size: 11.0 # Offset is the extra space around each character. `offset.y` can be thought # of as modifying the line spacing, and `offset.x` as modifying the letter @@ -179,15 +178,22 @@ font: # it is recommended to set `use_thin_strokes` to `false`. #use_thin_strokes: true + # Use built-in font for box drawing characters. + # + # If `true`, Alacritty will use a custom built-in font for box drawing + # characters (Unicode points 2500 - 259f). + # + #builtin_box_drawing: true + # If `true`, bold text is drawn using the bright color variants. #draw_bold_text_with_bright_colors: false -# Colors (ArcoLinux) -colors: +# Colors (Tomorrow Night) +#colors: # Default colors - # primary: - # background: '#222222' - # foreground: '#F9F9F9' + #primary: + #background: '#1d1f21' + # foreground: '#c5c8c6' # Bright and dim foreground colors # @@ -274,26 +280,26 @@ colors: # background: CellForeground # Normal colors - normal: - black: '#3f3f3f' - red: '#cc0000' - green: '#4e9a06' - yellow: '#c4a000' - blue: '#94bff3' - magenta: '#85678f' - cyan: '#06989a' - white: '#dcdccc' + #normal: + # black: '#1d1f21' + # red: '#cc6666' + # green: '#b5bd68' + # yellow: '#f0c674' + # blue: '#81a2be' + # magenta: '#b294bb' + # cyan: '#8abeb7' + # white: '#c5c8c6' # Bright colors - bright: - black: '#545454' - red: '#fc5454' - green: '#8ae234' - yellow: '#fce94f' - blue: '#94bff3' - magenta: '#b294bb' - cyan: '#93e0e3' - white: '#ffffff' + #bright: + # black: '#666666' + # red: '#d54e53' + # green: '#b9ca4a' + # yellow: '#e7c547' + # blue: '#7aa6da' + # magenta: '#c397d8' + # cyan: '#70c0b1' + # white: '#eaeaea' # Dim colors # @@ -869,4 +875,4 @@ colors: #log_level: Warn # Print all received window events. - #print_events: false + #print_events: false
\ No newline at end of file |