diff options
Diffstat (limited to '.tmux.conf')
-rw-r--r-- | .tmux.conf | 14 |
1 files changed, 11 insertions, 3 deletions
@@ -32,7 +32,7 @@ setw -g window-status-bg black | |||
32 | setw -g window-status-attr dim | 32 | setw -g window-status-attr dim |
33 | setw -g window-status-format ' #I#[fg=cyan]:#[fg=white]#W#[fg=white]#F ' | 33 | setw -g window-status-format ' #I#[fg=cyan]:#[fg=white]#W#[fg=white]#F ' |
34 | 34 | ||
35 | # Don't prompt to kill panes/windows. TODO you will fuck this up | 35 | # Don't prompt to kill panes/windows. |
36 | bind-key x kill-pane | 36 | bind-key x kill-pane |
37 | bind-key & kill-window | 37 | bind-key & kill-window |
38 | 38 | ||
@@ -50,8 +50,6 @@ bind-key z resize-pane -Z | |||
50 | # Use vim keybindings in copy mode | 50 | # Use vim keybindings in copy mode |
51 | setw -g mode-keys vi | 51 | setw -g mode-keys vi |
52 | 52 | ||
53 | set -g default-terminal "tmux-256color" | ||
54 | set -g default-command "${SHELL}" | ||
55 | set -g set-titles on | 53 | set -g set-titles on |
56 | set -g mouse on | 54 | set -g mouse on |
57 | 55 | ||
@@ -82,3 +80,13 @@ set -g visual-activity on | |||
82 | 80 | ||
83 | # Example of using a shell command in the status line | 81 | # Example of using a shell command in the status line |
84 | #set -g status-right "#[fg=yellow]#(uptime | cut -d ',' -f 2-)" | 82 | #set -g status-right "#[fg=yellow]#(uptime | cut -d ',' -f 2-)" |
83 | |||
84 | set -g default-terminal "xterm-256color" | ||
85 | set-option -ga terminal-overrides ",xterm-256color:Tc" | ||
86 | |||
87 | # List of plugins | ||
88 | set -g @plugin 'tmux-plugins/tpm' | ||
89 | set -g @plugin 'tmux-plugins/tmux-sensible' | ||
90 | |||
91 | # Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf) | ||
92 | run -b '~/.tmux/plugins/tpm/tpm' | ||