dotfiles/tmux.conf
Dan Buch 72d3746ea2 explicitly setting default shell/commnad to non-login bash
mostly for the sake of speed and/or laziness
2012-07-11 22:21:52 -04:00

24 lines
463 B
Bash

# need me some vi mode
setw -g mode-keys vi
# note to self: learn ye a zsh
set -g default-command /bin/bash
set -g default-shell /bin/bash
# copy-pasta in a vi-like way
unbind [
bind Escape copy-mode
unbind p
bind p paste-buffer
bind-key -t vi-copy 'v' begin-selection
bind-key -t vi-copy 'y' copy-selection
# must get used to C-b, even when using byobu-tmux
set-option -g prefix C-b
# love the toggle
bind-key C-b last-window
# faster!
set -s escape-time 0