dotfiles

:)
git clone https://git.sr.ht/~ashymad/dotfiles
Log | Files | Refs | Submodules | LICENSE

commit 9bf498198dd7bef0d6c8e58c04e29566ea4b9618
parent 69626f857d6f76ddd5de6a4d513e59b111f70313
Author: Ashymad <czilukim@o2.pl>
Date:   Wed, 19 Dec 2018 15:14:24 +0100

Update alacritty config for new version

Diffstat:
Malacritty/.config/alacritty/alacritty.yml | 42+++++++++++++++++++-----------------------
1 file changed, 19 insertions(+), 23 deletions(-)

diff --git a/alacritty/.config/alacritty/alacritty.yml b/alacritty/.config/alacritty/alacritty.yml @@ -17,7 +17,7 @@ env: # Window dimensions in character columns and lines # Falls back to size specified by window manager if set to 0x0. # (changes require restart) -dimensions: +window.dimensions: columns: 80 lines: 24 @@ -29,15 +29,15 @@ scrollback: # Adds this many blank pixels of padding around the window # Units are physical pixels; this is not DPI aware. # (change requires restart) -padding: - x: 2 - y: 2 +window.padding: + x: 0 + y: 0 # Display tabs using this many cells (changes require restart) tabspaces: 8 # When true, bold text is drawn using the bright variant of colors. -draw_bold_text_with_bright_colors: true +draw_bold_text_with_bright_colors: false # Font configuration (changes require restart) # @@ -61,37 +61,37 @@ draw_bold_text_with_bright_colors: true font: # The normal (roman) font face to use. normal: - family: Monofur # should be "Menlo" or something on macOS. + family: Code New Roman # should be "Menlo" or something on macOS. # Style can be specified to pick a specific face. style: Regular # The bold font face bold: - family: Monofur # # should be "Menlo" or something on macOS. + family: Code New Roman # # should be "Menlo" or something on macOS. # Style can be specified to pick a specific face. style: Bold # The italic font face italic: - family: Monofur # should be "Menlo" or something on macOS. + family: Code New Roman # should be "Menlo" or something on macOS. # Style can be specified to pick a specific face. style: Italic # Point size of the font - size: 16.0 + size: 9.0 # Offset is the extra space around each character. offset.y can be thought of # as modifying the linespacing, and offset.x as modifying the letter spacing. offset: - x: -1.0 - y: 0.0 + x: 0 + y: -2 # Glyph offset determines the locations of the glyphs within their cells with # the default being at the bottom. Increase the x offset to move the glyph to # the right, increase the y offset to move the glyph upward. glyph_offset: - x: 0.0 - y: 0.0 + x: 0 + y: 0 # OS X only: use thin stroke font rendering. Thin strokes are suitable # for retina displays, but for non-retina you probably want this set to @@ -101,10 +101,6 @@ font: # Should display the render timer render_timer: false -# Use custom cursor colors. If true, display the cursor in the cursor.foreground -# and cursor.background colors, otherwise invert the colors of the cursor. -custom_cursor_colors: false - # Colors (Tomorrow Night Bright) colors: # Default colors @@ -204,7 +200,7 @@ mouse: selection: semantic_escape_chars: ",│`|:\"' ()[]{}<>" -hide_cursor_when_typing: false +mouse.hide_when_typing: false # Style of the cursor # @@ -212,7 +208,7 @@ hide_cursor_when_typing: false # - Block # - Underline # - Beam -cursor_style: Block +cursor.style: Block # Live config reload (changes require restart) live_config_reload: true @@ -272,10 +268,10 @@ key_bindings: - { key: Key0, mods: Control, action: ResetFontSize } - { key: Equals, mods: Control, action: IncreaseFontSize } - { key: Subtract, mods: Control, action: DecreaseFontSize } - - { key: Up, mods: Control|Shift, action: ScrollUp } - - { key: Down, mods: Control|Shift, action: ScrollDown } - - { key: PageUp, mods: Shift, action: PageUp } - - { key: PageDown, mods: Shift, action: PageDown } + - { key: Up, mods: Control|Shift, action: ScrollToTop } + - { key: Down, mods: Control|Shift, action: ScrollToBottom } + - { key: PageUp, mods: Shift, action: ScrollPageUp } + - { key: PageDown, mods: Shift, action: ScrollPageDown } - { key: Home, chars: "\x1bOH", mode: AppCursor } - { key: Home, chars: "\x1b[H", mode: ~AppCursor } - { key: End, chars: "\x1bOF", mode: AppCursor }