aboutsummaryrefslogtreecommitdiff
path: root/alacritty.yml
diff options
context:
space:
mode:
Diffstat (limited to 'alacritty.yml')
-rw-r--r--alacritty.yml9
1 files changed, 6 insertions, 3 deletions
diff --git a/alacritty.yml b/alacritty.yml
index 9291c7e..fec3c80 100644
--- a/alacritty.yml
+++ b/alacritty.yml
@@ -95,10 +95,10 @@ window:
# and `light`. Set this to `None` to use the default theme variant.
gtk_theme_variant: dark
-#scrolling:
+scrolling:
# Maximum number of lines in the scrollback buffer.
# Specifying '0' will disable scrolling.
- #history: 10000
+ history: 100000
# Scrolling distance multiplier.
#multiplier: 3
@@ -724,7 +724,10 @@ key_bindings:
- { key: PageDown, mods: Shift, mode: ~Alt, action: ScrollPageDown }
- { key: Home, mods: Shift, mode: ~Alt, action: ScrollToTop, }
- { key: End, mods: Shift, mode: ~Alt, action: ScrollToBottom }
-
+ - { key: Up, mods: Shift, mode: ~Alt, action: ScrollPageUp, }
+ - { key: Down, mods: Shift, mode: ~Alt, action: ScrollPageDown }
+ - { key: Left, mods: Shift, mode: ~Alt, action: ScrollToTop, }
+ - { key: Right, mods: Shift, mode: ~Alt, action: ScrollToBottom }
# Vi Mode
#- { key: Space, mods: Shift|Control, mode: ~Search, action: ToggleViMode }
#- { key: Space, mods: Shift|Control, mode: Vi|~Search, action: ScrollToBottom }