multiple improvements to tmux conf
status-right and other stuff
This commit is contained in:
parent
4cf901e162
commit
693607d688
18
.tmux.conf
18
.tmux.conf
|
@ -91,13 +91,27 @@ bind l refresh-client
|
|||
unbind |
|
||||
bind | split-window
|
||||
|
||||
|
||||
# " windowlist -b
|
||||
unbind '"'
|
||||
bind '"' choose-window
|
||||
|
||||
# reload config
|
||||
bind-key r source-file ~/.tmux.conf \; display “Config reloaded!”
|
||||
bind r source-file ~/.tmux.conf
|
||||
|
||||
# Set TERM to 256 colors
|
||||
set -g default-terminal "screen-256color"
|
||||
|
||||
# Start window numbering at 1
|
||||
set -g base-index 1
|
||||
|
||||
# mouse-select-pane [on | off]
|
||||
# # # If on, tmux captures the mouse and when a window is
|
||||
# # # split into multiple panes the mouse may be used to
|
||||
# # # select the current pane. The mouse click is also
|
||||
# # # passed through to the application as normal.
|
||||
# # #
|
||||
set -g mouse-select-pane on
|
||||
|
||||
# status bar stuff
|
||||
set -g status-interval 2
|
||||
set -g status-right "#(date) #H"
|
||||
|
|
Loading…
Reference in New Issue