Created
September 17, 2014 19:38
-
-
Save robbiet480/e29f9bfc0c13705d766c 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
# vim: set ft=conf | |
# Expect UTF-8, even if the terminal doesn't report it. | |
set-window-option -g utf8 on | |
set-window-option -g status-utf8 on | |
# Basic Options | |
set-option -g base-index 1 | |
set-window-option -g pane-base-index 1 | |
set-option -g set-titles on | |
set-option -g bell-action any | |
set-window-option -g automatic-rename on | |
# Enable mouse | |
set-window-option -g mode-mouse on | |
set-window-option -g mouse-select-pane on | |
set-window-option -g mouse-resize-pane on | |
set-window-option -g mouse-select-window on | |
# Integration with zsh & make it look nice with colors | |
set-option -g default-shell /bin/zsh | |
set -g default-terminal "xterm-256color" | |
set-option -g default-terminal 'xterm-256color' | |
#set -g default-terminal 'screen-256color' | |
#set-option -g default-terminal 'screen-256color' | |
# Fix paste | |
#set-option -g default-command "/usr/local/bin/reattach-to-user-namespace -l zsh" | |
run-shell "/usr/local/bin/powerline-daemon -rq" | |
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