diff options
author | root <root@agr0.spicytaco.local> | 2020-05-11 11:12:30 -0400 |
---|---|---|
committer | root <root@agr0.spicytaco.local> | 2020-05-11 11:12:30 -0400 |
commit | 1bf99656291116f358e09799f23175571aeb8c32 (patch) | |
tree | 2174a4941cdc97ac1b572ae4b5321936d60cde20 /master-tmux_conf | |
parent | a0b8311d1bec4577507615f391c2dfdf5c08dfc1 (diff) |
Added support for tmux
Diffstat (limited to 'master-tmux_conf')
-rw-r--r-- | master-tmux_conf | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/master-tmux_conf b/master-tmux_conf new file mode 100644 index 0000000..55cf067 --- /dev/null +++ b/master-tmux_conf @@ -0,0 +1,14 @@ +# remap CTRL-b to CTRL-a because it's better +unbind C-b +set-option -g prefix C-a +bind-key C-a send-prefix + +# vi master race +set -g mode-keys vi +set -sg escape-time 0 + +# I <3 history +set -g history-limit 500000 + +# colors! +set -g default-terminal "screen-256color" |