commit e8d539539bf2cc0307e1971e13ebb20b273c1eff parent 647c7db4a8c4fe54ae70590541ddb1e4b0d2cd63 Author: Daniel Moch <daniel@danielmoch.com> Date: Sun, 18 Feb 2018 17:58:50 -0500 Add screenrc Diffstat:
A | .screenrc | | | 21 | +++++++++++++++++++++ |
M | .shrc | | | 5 | +++++ |
2 files changed, 26 insertions(+), 0 deletions(-)
diff --git a/.screenrc b/.screenrc @@ -0,0 +1,21 @@ +# +# ~/.screenrc +# + +term screen-256color +altscreen on +bell_msg 'Bell in window %n^G' +backtick 1 15 1 my status +hardstatus on +hardstatus alwayslastline '%{= dr}[%S]%{=b db} %w %=%{-b dd}%1` %{dr}%H' +startup_message off +mousetrack on + +bind h focus left +bind j focus down +bind k focus up +bind l focus right +bind S +bind "'" split -v +bind - split +bind x remove diff --git a/.shrc b/.shrc @@ -63,6 +63,11 @@ case `uname -s` in ;; esac +if echo $LANG | grep UTF-8 > /dev/null 2>&1 +then + alias screen="screen -U" +fi + if type gpg-connect-agent > /dev/null 2>&1 then GPG_TTY=`tty`; export GPG_TTY