Skip to content

Instantly share code, notes, and snippets.

@TimothyGu
Last active October 24, 2015 19:43
Show Gist options
  • Save TimothyGu/be82f98427a9032bab64 to your computer and use it in GitHub Desktop.
Save TimothyGu/be82f98427a9032bab64 to your computer and use it in GitHub Desktop.
set lazyredraw
set cursorline
set cursorcolumn
set hlsearch
set relativenumber
let mapleader = ","
nmap <Leader><CR> O<Esc>
set mouse=a
set -g default-terminal "screen-256color"
unbind C-b
set -g prefix C-a
bind C-a send-prefix
# https://unix.stackexchange.com/questions/14300/moving-tmux-window-to-pane
bind-key j command-prompt -p "join pane from:" "join-pane -s '%%'"
bind-key s command-prompt -p "send pane to:" "join-pane -t '%%'"
# https://github.com/tangledhelix/dotfiles/blob/master/tmux.conf
set -g mode-mouse on
set -g mouse-resize-pane on
set -g mouse-select-pane on
set -g mouse-select-window on
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment