-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.tmux.conf
31 lines (20 loc) · 869 Bytes
/
.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
#Appearance-----------------------------------------------------------------------------
set -g default-terminal "screen-256color"
set -g status-bg default
set -g status-fg "#00FF00"
#---------------------------------------------------------------------------------------
#Keybinds-------------------------------------------------------------------------------
#Pane navigation
bind h select-pane -L
bind j select-pane -D
bind k select-pane -U
bind l select-pane -R
#Pane resize
bind ^h resize-pane -L 2
bind ^j resize-pane -D 2
bind ^k resize-pane -U 2
bind ^l resize-pane -R 2
#---------------------------------------------------------------------------------------
#Theme --- https://github.com/jimeh/tmux-themepack.git
#source-file "${HOME}/.tmux-themepack/mybasic.tmuxtheme"
source-file "${HOME}/.tmux-themepack/powerline/double/green.tmuxtheme"