aboutsummaryrefslogtreecommitdiff
path: root/alacritty.yml
diff options
context:
space:
mode:
authorBlista Kanjo2022-04-26 08:57:35 -0400
committerBlista Kanjo2022-04-26 08:57:35 -0400
commit62e08895caa0dd1644bb7aa78dfd8f5ba5310785 (patch)
tree9022b92c1860cdb5167a8fb7c5424488ff546b6d /alacritty.yml
parentf4f2a9c294ef9f874b96feffd2dc926592ea04f5 (diff)
added new keybinds
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 }