diff options
Diffstat (limited to 'configs/.tmux.conf')
-rw-r--r-- | configs/.tmux.conf | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/configs/.tmux.conf b/configs/.tmux.conf index 04b210c12f55..904c95892c53 100644 --- a/configs/.tmux.conf +++ b/configs/.tmux.conf @@ -1,17 +1,25 @@ -set -g default-terminal "screen-256color" -set -g mouse on +source-file "${HOME}/makersquare/tmux-themepack/powerline/block/green.tmuxtheme" + +unbind C-b +set -g prefix C-a +bind C-a send-prefix + bind-key -r -T prefix k select-pane -U bind-key -r -T prefix j select-pane -D bind-key -r -T prefix h select-pane -L bind-key -r -T prefix l select-pane -R + bind-key -r -T prefix C-k resize-p -U 2 bind-key -r -T prefix C-j resize-p -D 2 bind-key -r -T prefix C-h resize-p -L 2 bind-key -r -T prefix C-l resize-p -R 2 + bind % split-window -c "#{pane_current_path}" bind '"' split-window -h -c "#{pane_current_path}" bind c new-window -c "#{pane_current_path}" +set -g default-terminal "tmux" + |