-
Notifications
You must be signed in to change notification settings - Fork 0
/
.tmux.conf
54 lines (42 loc) · 1.35 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
# como en screen
set-option -g prefix C-a
bind-key C-a last-window
# splits mas naturales
unbind %
bind | split-window -h
bind _ split-window -v
# Switch panes vim-like
bind h select-pane -L
bind l select-pane -R
bind j select-pane -D
bind k select-pane -U
# status bar
set -g status-bg colour0
set -g status-fg white
set -g status-left ''
set -g status-right ''
set -g window-status-format "#[fg=colour0]⮀ #[fg=white]#I #W "
set -g window-status-current-format "#[bg=white]#[fg=colour0] #[fg=black]#[bg=white]#I #W #[bg=colour0]#[fg=white]"
# zsh por defecto
set-option -g default-shell "/bin/zsh"
# flechas horizontales con shift sin prefijo para moverse entre ventanas
bind -n S-Left previous-window
bind -n S-Right next-window
# flechas verticales con shift sin prefijo para moverse entre paneles
bind -n S-Up select-pane -U
bind -n S-Down select-pane -D
# No delay for escape key press
set -sg escape-time 0
set -g mode-keys vi
set -g default-terminal "screen-256color"
# para que funcionen las ctrl-flecha en las aplicaciones
set-window-option -g xterm-keys on
# Para que abra las nuevas ventanas con el mismo path
bind c neww -c "#{pane_current_path}"
# uso de mouse
# set -g mode-mouse on
# setw -g mouse-select-window on
# setw -g mouse-select-pane on
# colores de los separadores de paneles
set -g pane-border-fg blue
set -g pane-active-border-fg cyan