Created
November 26, 2013 21:30
-
-
Save Zelnox/7666604 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
set-option -g default-shell "/bin/bash" | |
#set-option -g default-command "bash -l" | |
set-option -g default-command "reattach-to-user-namespace -l bash" | |
# Set the default terminal mode to 256color mode. | |
set -g default-terminal "screen-256color" | |
# Setting the prefix from `C-b` to `C-a`. | |
# By remapping the `CapsLock` key to `Ctrl`, | |
# you can make triggering commands more comfottable! | |
set -g prefix C-a | |
# Free the original `Ctrl-b` prefix keybinding. | |
unbind C-b | |
# Ensure that we can send `Ctrl-a` to other apps. | |
bind C-a send-prefix | |
# Reload the file with Prefix r. | |
bind r source-file ~/.tmux.conf \; display "Reloaded!" | |
# quick pane cycling | |
unbind ^A | |
#bind ^A select-pane -t :.+ | |
# Splitting panes. | |
bind | split-window -h | |
bind - split-window -v | |
# Moving between panes. | |
bind h select-pane -L | |
bind j select-pane -D | |
bind k select-pane -U | |
bind l select-pane -R | |
# Moveing between windows. | |
# Provided you've mapped your `CAPS LOCK` key to the `CTRL` key, | |
# you can now move between panes without moving your hands off the home row. | |
bind -r C-h select-window -t :- | |
bind -r C-l select-window -t :+ | |
# Pane resizing. | |
bind -r H resize-pane -L 5 | |
bind -r J resize-pane -D 5 | |
bind -r K resize-pane -U 5 | |
bind -r L resize-pane -R 5 | |
# Maximize and restore a pane. | |
unbind Up | |
bind Up new-window -d -n tmp \; swap-pane -s tmp.1 \; select-window -t tmp | |
unbind Down | |
bind Down last-window \; swap-pane -s tmp.1 \; kill-window -t tmp | |
# Log output to a text file on demand. | |
bind P pipe-pane -o "cat >>~/#W.log" \; display "Toggled logging to ~/#W.log" | |
# Vimlike copy mode. | |
unbind [ | |
bind Escape copy-mode | |
unbind p | |
bind p paste-buffer | |
bind -t vi-copy 'v' begin-selection | |
bind -t vi-copy 'y' copy-selection | |
# Setting the delay between prefix and command. (fastest) | |
set -sg escape-time 0 | |
# Set the base index for windows to 1 instead of 0. | |
set -g base-index 1 | |
# Set the base index for panes to 1 instead of 0. | |
setw -g pane-base-index 1 | |
# Mouse support - set to on if you want to use the mouse. | |
setw -g mode-mouse off | |
set -g mouse-select-pane off | |
set -g mouse-resize-pane off | |
set -g mouse-select-window off | |
set winheight 10 | |
set winminheight 5 | |
# Enable activity alerts. | |
setw -g monitor-activity on | |
set -g visual-activity on | |
# Pane colors. | |
set -g pane-border-fg green | |
set -g pane-border-bg black | |
set -g pane-active-border-fg white | |
set -g pane-active-border-bg yellow | |
# Command / message line. | |
set -g message-fg white | |
set -g message-bg black | |
set -g message-attr bright | |
# Enable vi keys. | |
setw -g mode-keys vi | |
# Solarized color. | |
#source-file ~/.tmux/vendor/tmux-colors-solarized/tmuxcolors.conf | |
#source $POWERLINE_HOME/powerline/bindings/tmux/powerline.conf | |
source /usr/local/lib/python2.7/site-packages/powerline/bindings/tmux/powerline.conf |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment