mirror of
https://github.com/tmux/tmux.git
synced 2025-04-03 06:18:48 +00:00
Change around the example .tmux.conf to show some newer features.
This commit is contained in:
parent
2c862b04af
commit
a5c89a1802
5
TODO
5
TODO
@ -18,7 +18,6 @@
|
|||||||
|
|
||||||
- format improvements:
|
- format improvements:
|
||||||
* option to quote format (#{q:session_name})
|
* option to quote format (#{q:session_name})
|
||||||
* formats need conditions for >0 (for #P)
|
|
||||||
* some way to pad # stuff with spaces
|
* some way to pad # stuff with spaces
|
||||||
* formats to show if a window is linked into multiple sessions, into
|
* formats to show if a window is linked into multiple sessions, into
|
||||||
multiple attached sessions, and is the active window in multiple
|
multiple attached sessions, and is the active window in multiple
|
||||||
@ -77,8 +76,6 @@
|
|||||||
* panning over window (window larger than visible)
|
* panning over window (window larger than visible)
|
||||||
* a mode where one application can cross two panes (ie x|y, width =
|
* a mode where one application can cross two panes (ie x|y, width =
|
||||||
COLUMNS/2 but height = ROWS * 2)
|
COLUMNS/2 but height = ROWS * 2)
|
||||||
* general key to space cells out evenly (horiz or vert) within their
|
|
||||||
parent cell (could replace even-vert/even-horiz layouts)
|
|
||||||
* separate active panes for different clients
|
* separate active panes for different clients
|
||||||
|
|
||||||
- terminfo bits
|
- terminfo bits
|
||||||
@ -125,7 +122,7 @@
|
|||||||
* customizable command aliases -- don't really want a whole alias tree
|
* customizable command aliases -- don't really want a whole alias tree
|
||||||
and set-alias commands like hooks/options/environ. maybe array
|
and set-alias commands like hooks/options/environ. maybe array
|
||||||
options, so you set command-alias[0] to foo=bar? array options would
|
options, so you set command-alias[0] to foo=bar? array options would
|
||||||
be useful for other stuff...
|
be useful for other stuff
|
||||||
* automatic pane logging
|
* automatic pane logging
|
||||||
|
|
||||||
- hooks
|
- hooks
|
||||||
|
@ -5,10 +5,20 @@
|
|||||||
#
|
#
|
||||||
|
|
||||||
# Some tweaks to the status line
|
# Some tweaks to the status line
|
||||||
set -g status-bg green
|
|
||||||
set -g status-right "%H:%M"
|
set -g status-right "%H:%M"
|
||||||
set -g window-status-current-attr "underscore"
|
set -g window-status-current-attr "underscore"
|
||||||
|
|
||||||
|
# If running inside tmux ($TMUX is set), then change the status line to red
|
||||||
|
%if #{TMUX}
|
||||||
|
set -g status-bg red
|
||||||
|
%endif
|
||||||
|
|
||||||
|
# Enable RGB colour if running in xterm(1)
|
||||||
|
set-option -sa terminal-overrides ",xterm*:Tc"
|
||||||
|
|
||||||
|
# Change the default $TERM to tmux-256color
|
||||||
|
set -g default-terminal "tmux-256color"
|
||||||
|
|
||||||
# No bells at all
|
# No bells at all
|
||||||
set -g bell-action none
|
set -g bell-action none
|
||||||
|
|
||||||
@ -18,9 +28,6 @@ set -g lock-after-time 1800
|
|||||||
# Keep windows around after they exit
|
# Keep windows around after they exit
|
||||||
set -g remain-on-exit on
|
set -g remain-on-exit on
|
||||||
|
|
||||||
# Turn on xterm-keys so that additional function keys get escape sequences
|
|
||||||
set -g xterm-keys on
|
|
||||||
|
|
||||||
# Change the prefix key to C-a
|
# Change the prefix key to C-a
|
||||||
set -g prefix C-a
|
set -g prefix C-a
|
||||||
unbind C-b
|
unbind C-b
|
||||||
@ -49,11 +56,8 @@ bind F12 selectw -t:21
|
|||||||
bind m set monitor-activity
|
bind m set monitor-activity
|
||||||
bind y set synchronize-panes\; display 'synchronize-panes #{?synchronize-panes,on,off}'
|
bind y set synchronize-panes\; display 'synchronize-panes #{?synchronize-panes,on,off}'
|
||||||
|
|
||||||
# Keys to hide and show a window name from the status line
|
# Create a single default session, because a session is created here, tmux
|
||||||
bind '-' set window-status-format '#I'\; set window-status-current-format '#I'
|
# should be started with "tmux attach" rather than "tmux new"
|
||||||
bind '+' set window-status-format '#I:#W#F'\; set window-status-current-format '#I:#W#F'
|
|
||||||
|
|
||||||
# Create a single default session
|
|
||||||
new -d -s0 -nirssi 'exec irssi'
|
new -d -s0 -nirssi 'exec irssi'
|
||||||
set -t0:0 monitor-activity on
|
set -t0:0 monitor-activity on
|
||||||
set -t0:0 aggressive-resize on
|
set -t0:0 aggressive-resize on
|
||||||
|
Loading…
Reference in New Issue
Block a user