diff options
author | terminaldweller <thabogre@gmail.com> | 2022-12-07 06:53:09 +0000 |
---|---|---|
committer | terminaldweller <thabogre@gmail.com> | 2022-12-07 06:53:09 +0000 |
commit | d979920cdac6d97abf7875df49735a4c0c0f75a3 (patch) | |
tree | 9abdb0033f84be01eadeff58d74f0d8490912ef8 /root | |
parent | update (diff) | |
download | scripts-d979920cdac6d97abf7875df49735a4c0c0f75a3.tar.gz scripts-d979920cdac6d97abf7875df49735a4c0c0f75a3.zip |
update
Diffstat (limited to 'root')
-rw-r--r-- | root/.tmux.conf | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/root/.tmux.conf b/root/.tmux.conf new file mode 100644 index 0000000..1e1aa40 --- /dev/null +++ b/root/.tmux.conf @@ -0,0 +1,15 @@ +set -g status-bg colour24 +setw -g mode-keys vi +bind [ copy-mode +bind -T copy-mode-vi 'v' send -X begin-selection +bind -T copy-mode-vi 'y' send -X copy-selection-and-cancel +bind ] paste-buffer +bind Space choose-buffer +bind -n C-h clear-history +bind P pipe-pane -o "cat >>~/.tmuxrecording/#W.log" \; display "Toggled logging to ~/#W.log" +bind | split-window -h +bind - split-window -v +bind -r k select-pane -U +bind -r j select-pane -D +bind -r h select-pane -L +bind -r l select-pane -R |