]> ruderich.org/simon Gitweb - config/dotfiles.git/blob - screenrc
zsh: Add documentation to window name feature.
[config/dotfiles.git] / screenrc
1 # Screen configuration file.
2
3
4 # Don't display startup message.
5 startup_message off
6
7 # Don't use visual bell.
8 vbell off
9
10 # Increase the scrollback buffer.
11 defscrollback 10000
12
13 # Bind P to paste the buffer content, like Vim's p.
14 bind P paste .
15
16 # Always display the status line.
17 hardstatus on
18 # Display the name of the window and the current hostname.
19 hardstatus alwayslastline "%w%=%H"
20
21 # Run urlview on current screen content. Very useful to follow links. Make
22 # sure hardcopy_append is off.
23 bind ^B eval "hardcopy $HOME/.screen-urlview" "screen urlview $HOME/.screen-urlview"