-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.tmux.conf
97 lines (81 loc) · 2.17 KB
/
.tmux.conf
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
# Use c-t instead of c-b as the prefix
unbind C-b
set -g prefix C-h
bind C-h send-prefix
bind h send-prefix
# From the vim-keys.conf
# #
# $Id: vim-keys.conf,v 1.2 2010/09/18 09:36:15 nicm Exp $
#
# vim-keys.conf, v1.2 2010/09/12
#
# By Daniel Thau. Public domain.
#
# This configuration file binds many vi- and vim-like bindings to the
# appropriate tmux key bindings. Note that for many key bindings there is no
# tmux analogue. This is intended for tmux 1.3, which handles pane selection
# differently from the previous versions
# split windows like vim
# vim's definition of a horizontal/vertical split is reversed from tmux's
bind s split-window -v
bind v split-window -h
# move around panes with HJKL, as one would in vim after pressing ctrl-w
bind h select-pane -L
bind j select-pane -D
bind k select-pane -U
bind l select-pane -R
# resize panes like vim
# feel free to change the "1" to however many lines you want to resize by, only
# one at a time can be slow
bind < resize-pane -L 1
bind > resize-pane -R 1
bind - resize-pane -D 1
bind + resize-pane -U 1
#
# Smart resize:) they do quicly
#
bind H resize-pane -L 2
bind L resize-pane -R 2
bind J resize-pane -D 2
bind K resize-pane -U 2
bind ^h resize-pane -L 4
bind ^l resize-pane -R 4
bind ^j resize-pane -D 4
bind ^k resize-pane -U 4
# bind : to command-prompt like vim
# this is the default in tmux already
bind : command-prompt
# vi-style controls for copy mode
setw -g mode-keys vi
# History
set -g history-limit 100000
#
# The hr-dev specific configuration
#
set -g default-path "/home/ray/"
set -g default-terminal "screen-256color"
bind ^n source-file ~/.tmux.new
# First session.
#new -d -s0 -n irssi 'exec ssh -t natalya exec sh ~/bin/tmux-start'
#setw -t0:0 monitor-activity on
#setw -t0:0 aggressive-resize on
#set -t0 status-bg green
#neww -d -ntodo 'exec emacs ~/TODO'
#setw -t0:1 aggressive-resize on
#neww -d -ntodo2 'exec emacs ~/TODO2'
#setw -t0:2 aggressive-resize on
#neww -d -nncmpc 'exec ncmpc -f ~/.ncmpc.conf'
#setw -t0:3 aggressive-resize on
#neww -d -nmutt 'exec mutt'
#setw -t0:4 aggressive-resize on
#neww -d
#neww -d
#neww -d
#
#new -d -s "hello-session" -n "hello"
#neww irssi
#neww mutt
#neww
#neww
#neww
#