From 5d88365fa1d53e56ca33b55226d360d673b944a5 Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Sun, 19 Feb 2012 17:37:04 +1300 Subject: Added tmux configuration. >gnu screen >2012 >ishygddt --- tmux/tmux.conf | 56 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 56 insertions(+) create mode 100644 tmux/tmux.conf (limited to 'tmux') diff --git a/tmux/tmux.conf b/tmux/tmux.conf new file mode 100644 index 00000000..de0b7443 --- /dev/null +++ b/tmux/tmux.conf @@ -0,0 +1,56 @@ +# Set the prefix to C-A. +unbind C-b +set -g prefix C-a +bind a send-prefix + +# GNU Screen rebindings. +unbind '"' +unbind A +unbind C-A +unbind C-C +unbind C-D +unbind C-L +unbind C-N +unbind C-P +unbind K +unbind S +unbind Tab +unbind k +unbind n +unbind p +unbind s +bind '"' choose-window +bind A command-prompt "rename-window %%" +bind C-A last-window +bind C-C new-window +bind C-D detach +bind C-L refresh-client +bind C-N next-window +bind C-P previous-window +bind K kill-window +bind S split-window -h +bind Tab select-pane -t :.+ +bind \ confirm-before "kill-server" +bind c new-window +bind k kill-window +bind n next-window +bind p previous-window +bind s split-window -v + +# Terminal settings. +set -g default-terminal "screen-256color" + +# Spiffy colours. +set -g status-fg colour16 +set -g status-bg colour237 +set -g window-status-current-fg colour231 +set -g window-status-current-bg colour237 +set -g pane-border-bg colour237 +set -g pane-border-fg colour237 +set -g pane-active-border-bg colour237 +set -g pane-active-border-fg colour237 + +# Use two-space separators, and forget the status indicator. +set-window-option -g window-status-format "#I #W " +set-window-option -g window-status-current-format "#I #W " + -- cgit v1.2.3