feat(tmux): unbind c-b
This commit is contained in:
parent
781edd5bf2
commit
875ee44e7c
|
@ -5,13 +5,14 @@ set -s escape-time 0
|
||||||
|
|
||||||
set-option -g focus-events on
|
set-option -g focus-events on
|
||||||
|
|
||||||
set-option -g prefix2 C-s
|
unbind C-b
|
||||||
|
set-option -g prefix C-s
|
||||||
|
|
||||||
bind r source-file "$XDG_CONFIG_HOME/tmux/tmux.conf"
|
bind r source-file "$XDG_CONFIG_HOME/tmux/tmux.conf"
|
||||||
set -g base-index 1
|
set -g base-index 1
|
||||||
|
|
||||||
set -g status-style 'bg=#45403d fg=#d4be98'
|
set -g status-style 'bg=#45403d fg=#d4be98'
|
||||||
set -g status-left-length 30
|
set -g status-left-length 20
|
||||||
|
|
||||||
set-window-option -g mode-keys vi
|
set-window-option -g mode-keys vi
|
||||||
bind -T copy-mode-vi v send-keys -X begin-selection
|
bind -T copy-mode-vi v send-keys -X begin-selection
|
||||||
|
@ -32,9 +33,17 @@ bind j select-pane -D
|
||||||
bind h select-pane -L
|
bind h select-pane -L
|
||||||
bind l select-pane -R
|
bind l select-pane -R
|
||||||
|
|
||||||
|
# sessionizer
|
||||||
bind-key f run-shell "tmux neww ~/.config/tmux/tmux-sessionizer"
|
bind-key f run-shell "tmux neww ~/.config/tmux/tmux-sessionizer"
|
||||||
bind-key F run-shell "tmux neww ~/.config/tmux/tmux-ssher"
|
|
||||||
bind-key T run-shell "tmux neww ~/.config/tmux/tmux-sessionizer ~/temp"
|
|
||||||
bind-key R run-shell "tmux neww ~/.config/tmux/tmux-sessionizer ~"
|
bind-key R run-shell "tmux neww ~/.config/tmux/tmux-sessionizer ~"
|
||||||
|
bind-key g run-shell "tmux neww ~/.config/tmux/tmux-sessionizer ~/.config"
|
||||||
|
bind-key T run-shell "tmux neww ~/.config/tmux/tmux-sessionizer ~/temp"
|
||||||
|
|
||||||
|
# clone
|
||||||
bind-key G run-shell "tmux neww ~/.config/tmux/tmux-ggclone"
|
bind-key G run-shell "tmux neww ~/.config/tmux/tmux-ggclone"
|
||||||
|
|
||||||
|
# ssh
|
||||||
|
bind-key F run-shell "tmux neww ~/.config/tmux/tmux-ssher"
|
||||||
|
|
||||||
|
# project
|
||||||
bind-key N run-shell "tmux neww ~/.config/tmux/tmux-new-project"
|
bind-key N run-shell "tmux neww ~/.config/tmux/tmux-new-project"
|
||||||
|
|
Loading…
Reference in New Issue