From 1840bb4ff8b476b4d12c76d9415e17e35a0f6335 Mon Sep 17 00:00:00 2001 From: Jo Wroten Date: Sun, 4 Aug 2019 17:32:04 -0500 Subject: [PATCH] Ease of use tmux --- tmux/.tmux.conf | 23 ++++++++++++++++++----- zsh/.zshrc | 1 - 2 files changed, 18 insertions(+), 6 deletions(-) diff --git a/tmux/.tmux.conf b/tmux/.tmux.conf index ea93c0c..681d98c 100644 --- a/tmux/.tmux.conf +++ b/tmux/.tmux.conf @@ -1,12 +1,25 @@ -# Correct tab numbering +# Config +## Correct numbering set -g base-index 1 - -# Move tabs to top +set -g pane-base-index 1 +set -g renumber-windows on +## Activity Monitoring +setw -g monitor-activity on +set -g visual-activity on +## Move tabs to top set-option -g status-position top # Mappings -bind-key v split-window -h -bind-key s split-window -v +## |,- Split panes +bind-key \ split-window -h +bind-key - split-window -v +## h,j,k,l to switch pane +bind h select-pane -L +bind j select-pane -D +bind k select-pane -U +bind l select-pane -R +## r to reload bind r source-file ~/.tmux.conf +# Theme source-file ~/dotfiles/tmux/.tmux.theme diff --git a/zsh/.zshrc b/zsh/.zshrc index ade8ca8..525d53e 100644 --- a/zsh/.zshrc +++ b/zsh/.zshrc @@ -3,7 +3,6 @@ export ZSH=~/.oh-my-zsh ZSH_THEME="kardan" ENABLE_CORRECTION="true" -COMPLETION_WAITING_DOTS="true" [[ -s ~/.autojump/etc/profile.d/autojump.sh ]] && source ~/.autojump/etc/profile.d/autojump.sh autoload -U compinit && compinit -u