mirror of
https://github.com/KevinMidboe/chsh.git
synced 2025-10-29 12:30:13 +00:00
15 lines
284 B
Bash
15 lines
284 B
Bash
|
|
# remap previx from 'C-b' to 'F10' and should
|
|
# map caps-lock to F10
|
|
unbind-key C-b
|
|
set-option -g prefix F10
|
|
bind-key F10 send-prefix
|
|
|
|
# Remove delay
|
|
set -s escape-time 1
|
|
|
|
# scroll window buffer history, not commands history
|
|
set -g mouse on
|
|
|
|
set -g default-terminal "xterm-256color"
|