blob: c6171a761e6115e2fb5ce50930fb7a4d098e1bfa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
#
# Tmux configuration file
# See https://wiki.archlinux.org/index.php/tmux
#
# Use screen sequency while we get used to tmux
unbind C-b
set -g prefix C-a
bind a send-prefix
# Support for 256 colors
set -g default-terminal "screen-256color"
# Status bar
# See https://coderwall.com/p/ca5cuw
# http://zanshin.net/2013/09/05/my-tmux-configuration/
#set-option -g status-position top
#set -g status-fg cyan
#set -g status-bg black
#set -g status-left ''
#set -g status-right-length 60
# Powerline
source '/usr/share/powerline/bindings/tmux/powerline.conf'
# See https://stackoverflow.com/questions/15470001/bind-ctrltab-and-ctrlshifttab-in-tmux
#bind-key -n C-Tab next-window
#bind-key -n C-S-Tab previous-window
|