diff options
author | HimbeerserverDE <himbeerserverde@gmail.com> | 2022-08-31 11:23:03 +0200 |
---|---|---|
committer | HimbeerserverDE <himbeerserverde@gmail.com> | 2022-08-31 11:23:12 +0200 |
commit | 0a7248c025b24c6ccabe1ac67c8df47e96af2574 (patch) | |
tree | 41968b5de716fdc4f7223570d79762f44a8838c7 /tmux.conf | |
parent | 1807590bd53f25b9a95230c422f12d6509c93865 (diff) |
Add custom tmux config
Diffstat (limited to 'tmux.conf')
-rw-r--r-- | tmux.conf | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/tmux.conf b/tmux.conf new file mode 100644 index 0000000..fe2891a --- /dev/null +++ b/tmux.conf @@ -0,0 +1,21 @@ +unbind C-b +set-option -g prefix C-s +bind-key C-s send-prefix + +unbind x +bind-key x display-panes + +unbind q +bind-key q kill-pane + +unbind \" +unbind % + +bind-key H split-window -h +bind-key V split-window -v + +unbind c +bind-key + new-window + +bind-key c copy-mode +bind-key v paste-buffer |