-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtmux.conf
35 lines (28 loc) · 917 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
32
33
34
35
set -g default-shell $SHELL
set -g default-command 'reattach-to-user-namespace -l ${SHELL}'
# unbind ctrl+b, ubah ke ctrl+a
unbind C-b
set-option -g prefix C-a
bind-key C-a send-prefix
# atur agar sekuen dimulai dari 1
set -g status-position top
set -g base-index 1
set -g pane-base-index 1
set -g renumber-windows on
set-option -g mouse on
bind-key -n C-t new-window
bind-key -n C-T new-window -c "#{pane_current_path}"
bind-key -n C-w kill-pane
set -g default-terminal "tmux-256color"
set -ga terminal-overrides ",*256col*:Tc"
bind \ split-window -h
bind | split-window -h -c '#{pane_current_path}'
bind - split-window
bind _ split-window -c '#{pane_current_path}'
set -g @plugin 'tmux-plugins/tpm'
# PLUGINS GO HERE!!!
set -g @plugin 'tmux-plugins/tmux-sensible'
set -g @plugin 'christoomey/vim-tmux-navigator'
set -g @themepack 'block/yellow'
set -g @plugin 'jimeh/tmux-themepack'
run '~/dotfiles/tpm/tpm'