From 40e2264239c3f1c0714734dc2bd170adce99885d Mon Sep 17 00:00:00 2001 From: Alexey Samoshkin Date: Thu, 23 Nov 2017 00:05:44 +0200 Subject: [PATCH] Add readme.md with project description --- readme.md | 272 +++++++++++++++++++++++++++++++++++++++++++++++++----- 1 file changed, 248 insertions(+), 24 deletions(-) diff --git a/readme.md b/readme.md index f37e383..e96f2d0 100644 --- a/readme.md +++ b/readme.md @@ -1,47 +1,271 @@ -My tmux configuration +Tmux 2 Configuration ===================== +Tmux configuration, that supercharges your "tmux" terminal environment, and make you feel like a boss. + +![intro](https://user-images.githubusercontent.com/768858/33151632-7e44cdb6-cfe1-11e7-860a-b0f51e7d31a4.gif) + +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](https://github.com/powerline/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](https://github.com/tmux-plugins/tmux-sidebar), [tmux-copycat](https://github.com/tmux-plugins/tmux-copycat), [tmux-open](https://github.com/tmux-plugins/tmux-open), [tmux-plugin-sysstat](https://github.com/samoshkin/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 +` -Prerequisites -------------- -This repo only installs `tmux.conf` files and related (plugins, scripts, themes, etc). It does not however install tmux, and requires you to do it yourself. Installation ------------- +------------- +The prerequisite is to install tmux >= "2.4". ``` -$ git clone -$ /install.sh +$ git clone https://github.com/samoshkin/tmux-config.git +$ ./tmux-config/install.sh ``` -Installation script does following: +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. -1. Init & update git submodules (tmux plugins) -1. Copy files to `$HOME/.tmux` directory, preserving existing file if any (most likely tmux plugins files) -1. Check if you don't have tmux installed and warn you -1. Create symlink at `$HOME/.tmux.conf`, and gently prompts you, if you already have one -Files ------ +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](https://unix.stackexchange.com/questions/1045/getting-256-colors-to-work-in-tmux) and [there](https://github.com/tmux/tmux/wiki/FAQ) + +``` +# 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: - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
tmux/tmux.confMain tmux configuration file (general settings, bindings, plugins, etc)C-aDefault 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-eOpen ~/.tmux.conf file in your $EDITOR
<prefix> C-rReload tmux configuration from ~/.tmux.conf file
<prefix> rRename current window
<prefix> RRename 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> TabSwitch to most recently used window
<prefix> WMove to window by typing it's index
<prefix> LLink 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 OSelect/focus panes in forward and backward direction
<prefix> C-oSwap current active pane with next one
tmux/theme.confAppearance settings and status bar setup<prefix> xKill current pane
<prefix> C-xKill current window (with confirmation)
<prefix> XKill current session (with confirmation)
<prefix> C-uMerge current session with another. Essentially, this moves all windows from current session to another one
<prefix> dDetach from session
<prefix> DDetach other clients except current one from session
<prefix> C-sToggle status bar visibility
<prefix> mMonitor current window for activity
<prefix> MMonitor current window for silence by entering silence period
<prefix> F12Switch off all key binding and prefix hanling in current window. See "Nested sessions" paragraph for more info
-Keybindings + +Status line ----------- -- [ ] TODO: describe keybindin gscheme +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". -Screenshots ------------ +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](https://user-images.githubusercontent.com/768858/33151594-59db6a8e-cfe1-11e7-8a36-476fe0b416b3.png) + +Right part: +![status line right](https://user-images.githubusercontent.com/768858/33151608-6978de72-cfe1-11e7-829a-e303e31e8c16.png) + +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](https://powerline.readthedocs.io/en/latest/installation.html#fonts-installation) for instructions and here is the [collection of patched fonts for powerline users](https://github.com/powerline/fonts) + +The right part of status line consists of following components: + +- CPU, memory usage, system load average metrics. Powered by [tmux-plugin-sysstat](https://github.com/samoshkin/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 ` 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](https://simplyian.com/2014/03/29/using-tmux-remotely-within-a-local-tmux-session/), `C-b` for local session, and `C-a` for remote session. And, you know, it feels like: + +![tmux in tmux](http://i.imgur.com/HQBdV1J.jpg) + +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://stahlke.org/dan/tmux-nested/](http://stahlke.org/dan/tmux-nested/) and this [Github issue](https://github.com/tmux/tmux/issues/237) + +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](https://user-images.githubusercontent.com/768858/33151636-84a0bab2-cfe1-11e7-9d5d-412525689c9b.gif) + +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" +``` -- [ ] TODO: put eye-catching screenshots as soon as I'm done with status bar +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. -Here what you would get: +create several panes, windows +move between them +zoom window +open nested tmux session +scroll and copy