Adjustments to Style & Content

Style changes
  - Site format has changed back to ~80 columns, certain rows have had line
    breaks removed.
  - Indentation has been adjusted globally to give additional space and
    consistency.
  - Configuring Tmux has been separated due to long lines causing the entire
    page to scroll horizontally and block text.
  - tmux.conf has been reorganized to better explain settings categorically to
    new users.

 Content Changes
  - Unmapping the prefix key contained erroneous data
  - Misc section and it's contained "bind r source.." setting are superfluous,
    as when this points to the next file to use in the configuration, not the
    current file. Since no additional configuration files have been used, it
    has been removed.
This commit is contained in:
jmaud 2014-10-07 16:55:40 -04:00
parent ce3fb267f7
commit fd29de7f59

View File

@ -2,7 +2,8 @@
category: tool
tool: tmux
contributors:
- ["kaernyk", "http://github.com/kaernyk"]
- ["kaernyk", "https://github.com/kaernyk"]
- ["jmaud". "https://github.com/jmaud"]
filename: LearnTmux.txt
---
@ -15,9 +16,9 @@ then later reattached.
```
tmux [command] # Run a command
# 'tmux' with no commands will create a new
session
# 'tmux' with no commands will create a new session
new # Create a new session
-s "Session" # Create named session
@ -104,6 +105,7 @@ then later reattached.
M-Up, M-Down # Resize the current pane in steps of five cells
M-Left, M-Right
```
### Configuring ~/.tmux.conf
@ -111,15 +113,36 @@ then later reattached.
tmux.conf can be used to set options automatically on start up, much
like how .vimrc or init.el are used.
```
# Example tmux.conf
# 2014.9
# 2014.10
### General
###########################################################################
# Enable UTF-8
setw -g utf8 on
set-option -g status-utf8 on
# Scrollback/History limit
set -g history-limit 2048
# Index Start
set -g base-index 1
# Mouse
set-option -g mouse-select-pane on
### Keybinds
######################################################################
###########################################################################
# Unbind C-b as the default prefix
unbind-key C-befix C-a
unbind-key C-b
# Set new default prefix
set-option -g prefix `
# Return to previous window when prefix is pressed twice
bind-key C-a last-window
@ -129,12 +152,15 @@ bind-key ` last-window
bind-key F11 set-option -g prefix C-a
bind-key F12 set-option -g prefix `
# Activate inner-most session (when nesting tmux)
# to send commands
bind-key a send-prefix
# Keybind preference
setw -g mode-keys vi
set-option -g status-keys vi
# Index Start
set -g base-index 1
# Moving between panes with vim movement keys
bind h select-pane -L
bind j select-pane -D
bind k select-pane -U
bind l select-pane -R
# Window Cycle/Swap
bind e previous-window
@ -142,23 +168,21 @@ bind f next-window
bind E swap-window -t -1
bind F swap-window -t +1
# easy-to-remember split pane commands
bind | split-window -h
# Easy split pane commands
bind = split-window -h
bind - split-window -v
unbind '"'
unbind %
# moving between panes with vim movement keys
bind h select-pane -L
bind j select-pane -D
bind k select-pane -U
bind l select-pane -R
# Activate inner-most session (when nesting tmux) to send commands
bind-key a send-prefix
### Theme
#####################################################################
###########################################################################
# Statusbar Color Palette
# Statusbar Color Palatte
set-option -g status-justify left
set-option -g status-bg black
set-option -g status-fg white
@ -187,14 +211,7 @@ setw -g window-status-activity-fg yellow
### UI
######################################################################
# Statusbar
set-option -g status-utf8 on
# Keybind preference
setw -g mode-keys vi
set-option -g status-keys vi
###########################################################################
# Notification
setw -g monitor-activity on
@ -202,43 +219,14 @@ set -g visual-activity on
set-option -g bell-action any
set-option -g visual-bell off
# Mouse
setw -g mode-mouse on
set-option -g mouse-select-pane on
set -g mouse-resize-pane on
set -g mouse-select-window on
# Automatically set window titles
set-option -g set-titles on
# window number,program name,active (or not)
set-option -g set-titles-string '#H:#S.#I.#P #W #T'
set-option -g set-titles-string '#H:#S.#I.#P #W #T' # window number,program name,active (or not)
# Statusbar Adjustments
set -g status-left '#[fg=red]#H#[fg=green]:#[fg=white]#S #[fg=green]][#[default]'
set -g status-interval 3
# Statusbar with right-aligned Date / Time
#set -g status-right '#[fg=green]][#[fg=white] #T #[fg=green]][ #[fg=blue]%Y-%m-%d #[fg=white]%H:%M#[default]'
set -g status-left "#[fg=red] #H#[fg=green]:#[fg=white]#S #[fg=green]][#[default]"
# Show performance counters in statusbar
# Requires https://github.com/thewtex/tmux-mem-cpu-load/
#set -g status-right '#[fg=green]][#[fg=white] #(tmux-mem-cpu-load 5 4) #[fg=green]][ #[fg=yellow]%H:%M#[default]'
### Misc
######################################################################
# Scrollback/History limit
set -g history-limit 4096
bind r source-file ~/.tmux.conf
```
### External Resources
<a href="http://tmux.sourceforge.net/">Tmux | Home</a><br>
<a href="http://www.openbsd.org/cgi-bin/man.cgi/OpenBSD-current/man1/tmux.1?query=tmux">Tmux Manual page</a><br>
<a href="http://wiki.gentoo.org/wiki/Tmux">Archlinux Wiki</a><br>
<a href="https://wiki.archlinux.org/index.php/Tmux">Gentoo Wiki</a><br>
<a href="https://stackoverflow.com/questions/11558907/is-there-a-better-way-to-display-cpu-usage-in-tmux">Display CPU/MEM % in statusbar</a><br>
#set -g status-interval 4
#set -g status-right "#[fg=green]][ #[fg=white]#(tmux-mem-cpu-load) #[fg=green]][ #[fg=yellow]%H:%M #[default]"