This repository has been archived on 2022-12-11. You can view files and clone it, but cannot push or open issues or pull requests.
dot-files/.tmux.conf
Collin J. Doering 5f3173ff64 Fix tmux keybindings
- rebind clock-mode to "<prefix> T" to free up "<prefix> t"
- bind "<prefix> t" to send-prefix so that <prefix> can be sent to
  underlying applications

As a reminder, the current prefix remains C-t

Signed-off-by: Collin J. Doering <rekahsoft@gmail.com>
2015-01-14 05:12:44 -05:00

27 lines
558 B
Plaintext

# File: .tmux.conf
# Author: Collin J. Doering <rekahsoft@gmail.com>
# Date: Jan 18, 2014
# Set prefix key to C-t instead of default C-b
unbind C-b
set -g prefix C-t
# Mimic 256 colors
set -g default-terminal "screen-256color"
# Toggle last window like screen
bind-key C-t last-window
# Rebind clock-mode to "prefix T"
unbind t
bind-key T clock-mode
# Send prefix to underlying application using "prefix t"
bind-key t send-prefix
# session initialization
new -s default -n zsh zsh
#neww -n weechat weechat-curses
neww -n emacs emacsclient
selectw -t 1