init
This commit is contained in:
31
tmux/.tmux.conf
Normal file
31
tmux/.tmux.conf
Normal file
@ -0,0 +1,31 @@
|
||||
set-option -g default-shell /usr/bin/zsh
|
||||
|
||||
set -g mouse on
|
||||
|
||||
set -g default-terminal "xterm-kitty"
|
||||
set -as terminal-features ",xterm-256color:RGB"
|
||||
|
||||
setw -g pane-base-index 1
|
||||
set -g base-index 1
|
||||
set -g renumber-windows on
|
||||
|
||||
set -g history-limit 1000000
|
||||
|
||||
unbind C-Space
|
||||
set -g prefix C-Space
|
||||
bind C-Space send-prefix
|
||||
|
||||
bind * setw synchronize-panes
|
||||
|
||||
bind h select-pane -L
|
||||
bind j select-pane -D
|
||||
bind k select-pane -U
|
||||
bind l select-pane -R
|
||||
|
||||
bind O new-session
|
||||
|
||||
bind c new-window -c "#{pane_current_path}"
|
||||
bind \" split-pane -c "#{pane_current_path}"
|
||||
bind % split-pane -h -c "#{pane_current_path}"
|
||||
|
||||
bind p run-shell tmuxpopup
|
||||
Reference in New Issue
Block a user