Add home/.config/kitty/advanced.conf
Add home/.config/kitty/colorscheme.conf Add home/.config/kitty/cursor.conf Add home/.config/kitty/fonts.conf Add home/.config/kitty/keyboard.conf Add home/.config/kitty/kitty.conf Add home/.config/kitty/kitty.conf.ori Add home/.config/kitty/mouse.conf Add home/.config/kitty/os_specific.conf Add home/.config/kitty/performance_tuning.conf Add home/.config/kitty/scrollback.conf Add home/.config/kitty/session_multiple.conf Add home/.config/kitty/session_single.conf Add home/.config/kitty/tabbar.conf Add home/.config/kitty/terminal_bell.conf Add home/.config/kitty/window_layout.conf
This commit is contained in:
45
home/dot_config/kitty/scrollback.conf
Normal file
45
home/dot_config/kitty/scrollback.conf
Normal file
@@ -0,0 +1,45 @@
|
||||
# vim:fileencoding=utf-8:ft=conf:foldmethod=marker
|
||||
|
||||
#: Scrollback {{{
|
||||
|
||||
scrollback_lines 2000
|
||||
|
||||
#: Number of lines of history to keep in memory for scrolling back.
|
||||
#: Memory is allocated on demand. Negative numbers are (effectively)
|
||||
#: infinite scrollback. Note that using very large scrollback is not
|
||||
#: recommended as it can slow down resizing of the terminal and also
|
||||
#: use large amounts of RAM.
|
||||
|
||||
scrollback_pager less --chop-long-lines --RAW-CONTROL-CHARS +INPUT_LINE_NUMBER
|
||||
|
||||
#: Program with which to view scrollback in a new window. The
|
||||
#: scrollback buffer is passed as STDIN to this program. If you change
|
||||
#: it, make sure the program you use can handle ANSI escape sequences
|
||||
#: for colors and text formatting. INPUT_LINE_NUMBER in the command
|
||||
#: line above will be replaced by an integer representing which line
|
||||
#: should be at the top of the screen.
|
||||
|
||||
scrollback_pager_history_size 0
|
||||
|
||||
#: Separate scrollback history size, used only for browsing the
|
||||
#: scrollback buffer (in MB). This separate buffer is not available
|
||||
#: for interactive scrolling but will be piped to the pager program
|
||||
#: when viewing scrollback buffer in a separate window. The current
|
||||
#: implementation stores one character in 4 bytes, so approximatively
|
||||
#: 2500 lines per megabyte at 100 chars per line. A value of zero or
|
||||
#: less disables this feature. The maximum allowed size is 4GB.
|
||||
|
||||
wheel_scroll_multiplier 5.0
|
||||
|
||||
#: Modify the amount scrolled by the mouse wheel. Note this is only
|
||||
#: used for low precision scrolling devices, not for high precision
|
||||
#: scrolling on platforms such as macOS and Wayland. Use negative
|
||||
#: numbers to change scroll direction.
|
||||
|
||||
touch_scroll_multiplier 1.0
|
||||
|
||||
#: Modify the amount scrolled by a touchpad. Note this is only used
|
||||
#: for high precision scrolling devices on platforms such as macOS and
|
||||
#: Wayland. Use negative numbers to change scroll direction.
|
||||
|
||||
#: }}}
|
||||
Reference in New Issue
Block a user