diff options
author | Dan Fedele <dan.fedele@gmail.com> | 2023-06-12 16:48:51 -0400 |
---|---|---|
committer | Dan Fedele <dan.fedele@gmail.com> | 2023-06-12 16:48:51 -0400 |
commit | c012b2026d4908e8533e6d3c3d8b89d36b11f168 (patch) | |
tree | ed7472598234db7fd30ab022a611f450e60c4599 /roles/custom-config/files/tmux_conf | |
parent | e8ca7beece3fd8b80d76857d7c6f687d83209918 (diff) |
Now using ansible roles. also removed linpeass
Diffstat (limited to 'roles/custom-config/files/tmux_conf')
-rw-r--r-- | roles/custom-config/files/tmux_conf | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/roles/custom-config/files/tmux_conf b/roles/custom-config/files/tmux_conf new file mode 100644 index 0000000..55cf067 --- /dev/null +++ b/roles/custom-config/files/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" |