mainly tmux updates, ssh-askpass w/ pinentry

This commit is contained in:
Arthur Khachaturov 2024-08-24 23:57:32 +03:00
parent 3db255cc32
commit d2d85c8cff
No known key found for this signature in database
GPG key ID: CAC2B7EB6DF45D55
8 changed files with 64 additions and 8 deletions

View file

@ -3,27 +3,41 @@ unbind-key C-b
set-option -g prefix C-a
bind-key C-a send-prefix
# moving
# Moving
bind u previous-window
bind i next-window
bind n "new-window -c '#{pane_current_path}'"
# splits
# Splits
bind h "split-window -hb -c '#{pane_current_path}'"
bind j "split-window -v -c '#{pane_current_path}'"
bind k "split-window -v -b -c '#{pane_current_path}'"
bind l "split-window -h -c '#{pane_current_path}'"
# Rebind command key to ;
bind ';' "command-prompt"
# Reload config on C-r
# Reload config
bind C-r "source-file ~/.config/tmux/tmux.conf"
# session binds
# Session binds
bind C-n "new-session -c '#{pane_current_path}' -s '#{b:pane_current_path}'"
bind C-x "set-option -g detach-on-destroy on; kill-session"
bind X "set-option -g detach-on-destroy off; kill-session; set-option -g detach-on-destroy on"
# Select mode
unbind-key -T copy-mode-vi y
unbind-key -T copy-mode-vi v
unbind-key -T copy-mode-vi V
unbind-key -T copy-mode-vi C-v
unbind-key -T copy-mode-vi C-c
unbind-key -T copy-mode-vi Escape
bind-key -T copy-mode-vi y send-keys -X copy-pipe-and-cancel
bind-key -T copy-mode-vi v send-keys -X begin-selection
bind-key -T copy-mode-vi V send-keys -X select-line
bind-key -T copy-mode-vi C-v send-keys -X rectangle-toggle
bind-key -T copy-mode-vi C-c send-keys -X cancel
bind-key -T copy-mode-vi Escape send-keys -X clear-selection
# vim: ft=tmux