forked from mohammedpivotal/dotfiles
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path.tmux-pre-3.0.conf
71 lines (53 loc) · 1.8 KB
/
.tmux-pre-3.0.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
#! /usr/bin/env bash
#-- Dave Wallraff
# First things first, I'm the realest...
# terminal colors
set -g default-terminal "xterm-256color"
# default statusbar colors
set-option -g status-bg colour235
set-option -g status-fg colour179
set-option -g status-attr default
# default window title colors
set-window-option -g window-status-fg colour244
set-window-option -g window-status-bg default
# active window title colors
set-window-option -g window-status-current-fg colour166
set-window-option -g window-status-current-bg default
set-window-option -g window-status-current-attr bright
# pane border
set-option -g pane-border-fg colour235
set-option -g pane-active-border-fg colour240
# pane number display
set-option -g display-panes-active-colour colour33
set-option -g display-panes-colour colour166
# clock
set-window-option -g clock-mode-colour colour64
# status bar right contents
set -g status-right-length 65
set -g status-right "#[fg=colour187][#h] #[fg=default][%H:%M %e-%b-%Y]"
set -g status-interval 5
set-option -g status-keys vi
set-option -g mode-keys vi
set -g mouse on
#no command delay
set -sg escape-time 0
set-window-option -g automatic-rename off
#using C-a as prefix
# unbind C-b
# set-option -g prefix C-a
# bind a send-prefix
set -g base-index 1
bind C-c new-window
bind A command-prompt 'rename-window %%'
bind C-a last-window
bind '"' split-window -c "#{pane_current_path}"
bind % split-window -h -c "#{pane_current_path}"
bind c new-window -c "#{pane_current_path}"
set -g @continuum-restore 'on'
# List of plugins
set -g @plugin 'tmux-plugins/tpm'
set -g @plugin 'tmux-plugins/tmux-sensible'
set -g @plugin 'tmux-plugins/tmux-resurrect'
set -g @plugin 'tmux-plugins/tmux-continuum'
# Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf)
run '~/.tmux/plugins/tpm/tpm'