Skip to content

Tmux configuration, that supercharges your tmux to build cozy and cool terminal environment

Notifications You must be signed in to change notification settings

samoshkin/tmux-config

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Tmux 2 Configuration

Tmux configuration, that supercharges your "tmux" terminal environment, and make you feel like a boss.

intro

Features

  • "C-a" prefix instead of "C-b" (screen like)
  • support for nested tmux sessions
  • configurable visual theme/colors, with some elements borrowed from Powerline
  • can apply different configuration whether your session is on local or remote machine
  • supercharged and cozy status line
  • status line: CPU, memory usage, system load average metrics
  • status line: username and hostname, current date time
  • status line: battery information in status line
  • status line: visual indicator when you press prefix
  • status line: visual indicator when pane is zoomed
  • status line: online/offline visual indicator
  • toggle visibility of status line
  • monitor windows for activity/silence
  • scroll and copy mode improvements
  • prompt to rename window right after it's created
  • highlight focused pane
  • merge current session with existing one (move all windows)
  • integration with 3rd party plugins: tmux-sidebar, tmux-copycat, tmux-open, tmux-plugin-sysstat

TBD:

  • retain current path when new pane is created
  • integration with clipboard
  • fix pane resizing
  • key binding to close all windows but current one
  • fix installation script to properly install TPM
  • change zoom action key binding to prefix +

Installation

The prerequisite is to install tmux >= "2.4".

$ git clone https://github.com/samoshkin/tmux-config.git
$ ./tmux-config/install.sh

Installation script will copy files to ~/.tmux directory, symlink main ~/.tmux config file, install Tmux plugin manager (if not already installed), install configured tmux plugins. If you already have existing ~/tmux.conf, backup will be created.

General settings

Windows and pane indexing starts from 1 rather than 0. Scrollback history limit is set to 20000. Automatic window renameing is turned off. Aggresive resizing is on. Message line display timeout is 1.5s. Mouse support in on.

256 color palette support is turned on, make sure that your parent terminal is configured propertly. See here and there

# parent terminal
$ echo $TERM
xterm-256color

# jump into a tmux session
$ tmux new
$ echo $TERM
screen-256color

Key bindings

So ~/.tmux.conf overrides default key bindings for many action, to make them more reasonable, easy to recall and comforable to type.

Let's go through them:

C-a Default prefix, used instead of "C-b". Same prefix is used in screen program, and it's easy to type. The only drawback of "C-a" is that underlying shell does not receive the keystroke to move to the beginning of the line.
<prefix> C-e Open ~/.tmux.conf file in your $EDITOR
<prefix> C-r Reload tmux configuration from ~/.tmux.conf file
<prefix> r Rename current window
<prefix> R Rename current session
<prefix> _ Split new pane horizontally
<prefix> | Split new pane vertically
<prefix> < Move to previous window
<prefix> > Move to next window
<prefix> M-< Move to previous window with alert
<prefix> M-> Move to next window with alert
<prefix> Tab Switch to most recently used window
<prefix> W Move to window by typing it's index
<prefix> L Link window from another session by entering target session and window reference
<prefix> \ Swap panes back and forth with 1st pane. When in main-horizontal or main-vertical layout, the main panel is always at index 1. This keybinding let you swap secondary pane with main one, and do the opposite.
<prefix> o and O Select/focus panes in forward and backward direction
<prefix> C-o Swap current active pane with next one
<prefix> x Kill current pane
<prefix> C-x Kill current window (with confirmation)
<prefix> X Kill current session (with confirmation)
<prefix> C-u Merge current session with another. Essentially, this moves all windows from current session to another one
<prefix> d Detach from session
<prefix> D Detach other clients except current one from session
<prefix> C-s Toggle status bar visibility
<prefix> m Monitor current window for activity
<prefix> M Monitor current window for silence by entering silence period
<prefix> F12 Switch off all key binding and prefix hanling in current window. See "Nested sessions" paragraph for more info

Status line

I've started with Powerline as a status line, but then realized it's too fat for my Macbook 15'' display, it hardly can fit all those fancy arrows, widgets and separators, so that I can only see one window "tab".

So I decide to make my feet wet, with the idea to keep it dense, and include essential widgets. Sometimes it tries to replicate OSX topbar (battery, date time).

Left part: status line left

Right part: status line right

The left part contains only current session name.

Window tabs use Powerline arrows glyphs, so you need to install Powerline enabled font to make this work. See Powerline docs for instructions and here is the collection of patched fonts for powerline users

The right part of status line consists of following components:

  • CPU, memory usage, system load average metrics. Powered by tmux-plugin-sysstat (dislaimed, that's my own development, because I haven't managed to find any good plugin with CPU and memory/swap metrics)
  • username and hostname (invaluable when you SSH onto remote host)
  • current date time
  • battery information
  • visual indicator when you press prefix key: [^A].
  • visual indicator when pane is zoomed: [Z]
  • online/offline visual indicator (just pings google.com)

You might want to hide status bar using <prefix> C-s keybinding.

Nested tmux sessions

One prefers using tmux on local machine to supercharge their terminal emulator experience, other use it only for remote scenarios to retain session/state in case of disconnect. Things are getting more complex, when you want to be on both sides. You end up with nested session, and face the question: How you can control inner session, since all keybindings are caught and handled by outer session?. Community provides several possible solutions.

The most common is to press C-a prefix twice. First one is caught by local session, whereas second is passed to remote one. Nothing extra steps need to be done, this works out of the box. However, root keytable bindings are still handled by outer session, and cannot be passed to inner one.

Second attempt to tackle this issue, is to setup 2 individual prefixes, C-b for local session, and C-a for remote session. And, you know, it feels like:

tmux in tmux

And finally accepted solution, turn off all keybindings and key prefix handling in outer session, when working with inner one. This way, outer session just sits aside, without interfering keystrokes passed to inner session. Credits to http:https://stahlke.org/dan/tmux-nested/ and this Github issue

So, how it works. When in outer session, simply press F12 to toggle off all keybindings handling in outer session. Now work with inner session using the same keybinding scheme and same keyprefix. Press F12 to turn on outer session back.

nested sessions

You might notice that when key bindings are "OFF", special [OFF] visual indicator is shown in the status line, and status line changes its style (colored to gray).

Local and remote sessions

Remote session is detected by existence of $SSH_CLIENT variable. When session is remote, following changes are applied:

  • status line is docked to bottom; so it does not stack with status line of local session
  • some widgets are removed from status line: battery, date time. The idea is to economy width, so on wider screens you can open two remote tmux sessions in side-by-side panes of single window of local session.

You can apply remote-specific settings by extending ~/.tmux/.tmux.remote.conf file.

Themes and customization

All colors related to theme are declared as variables. You can change them in ~/.tmux.conf.

# This is a theme CONTRACT, you are required to define variables below
# Change values, but not remove/rename variables itself
color_dark="$color_black"
color_light="$color_white"
color_session_text="$color_blue"
color_status_text="colour245"
color_main="$color_orange"
color_secondary="$color_purple"
color_level_ok="$color_green"
color_level_warn="$color_yellow"
color_level_stress="$color_red"
color_window_off_indicator="colour088"
color_window_off_status_bg="colour238"
color_window_off_status_current_bg="colour254"

Note, that variables are not extracted to dedicated file, as it should be, because for some reasons, tmux does not see variable values after sourcing theme.conf file. Don't know why.

create several panes, windows move between them zoom window open nested tmux session scroll and copy

About

Tmux configuration, that supercharges your tmux to build cozy and cool terminal environment

Topics

Resources

Stars

Watchers

Forks

Packages

 
 
 

Languages