configs  Check-in [e6fe352570]

Overview
Comment:tmux.conf: Change panes using C-[hjkl]

Resizing is now M-[hjkl].

Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: e6fe3525708474a811b4a190d4ea4f61bdfd79d664f35cb5a4e3e3460deb4eff
User & Date: js on 2015-02-15 19:23:43
Other Links: manifest | tags
Context
2015-02-15
19:24
vim/after/syntax/objc.vim: Add of_offset_t check-in: 78367d3e54 user: js tags: trunk
19:23
tmux.conf: Change panes using C-[hjkl] check-in: e6fe352570 user: js tags: trunk
19:22
gitconfig: Sign commits using GPG check-in: 5158833207 user: js tags: trunk
Changes

Modified tmux.conf from [3be9e35b60] to [c3d9653c6b].

1
2
3
4
5
6
7
8
9




10
11
12
13
14
setw -g mode-keys vi
set -g status-bg colour233
set -g status-fg colour25
set -g status-left "#[fg=colour52]#S #[fg=colour24]⧉"
set -g status-right "#[fg=colour22]#(whoami)#[fg=colour28]@#h #[fg=colour40]#(date +%H:%M)"
set -w -g window-status-current-fg colour39
set -w -g window-status-current-bg colour236
set -w -g window-status-bell-fg colour233
set -w -g window-status-bell-bg colour124




bind -r C-h resize-pane -L
bind -r C-j resize-pane -D
bind -r C-k resize-pane -U
bind -r C-l resize-pane -R
set -ag terminal-overrides ",*:XT@"









>
>
>
>
|
|
|
|

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
setw -g mode-keys vi
set -g status-bg colour233
set -g status-fg colour25
set -g status-left "#[fg=colour52]#S #[fg=colour24]⧉"
set -g status-right "#[fg=colour22]#(whoami)#[fg=colour28]@#h #[fg=colour40]#(date +%H:%M)"
set -w -g window-status-current-fg colour39
set -w -g window-status-current-bg colour236
set -w -g window-status-bell-fg colour233
set -w -g window-status-bell-bg colour124
bind -r C-h select-pane -L
bind -r C-j select-pane -D
bind -r C-k select-pane -U
bind -r C-l select-pane -R
bind -r M-h resize-pane -L
bind -r M-j resize-pane -D
bind -r M-k resize-pane -U
bind -r M-l resize-pane -R
set -ag terminal-overrides ",*:XT@"