(C-x means ctrl+x, M-x means alt+x)
The default prefix is C-b. If you (or your muscle memory) prefer C-a, you need to add this to ~/.tmux.conf:
| # http://bconnelly.net/2013/10/creating-colorblind-friendly-figures/ | |
| from __future__ import print_function, division | |
| import matplotlib.pyplot as plt | |
| from matplotlib import colors | |
| from cycler import cycler | |
| import numpy as np | |
| palette_names = np.array(["Black", "Orange", "SkyBlue", "#009e73", |
| CB_color_cycle = ['#377eb8', '#ff7f00', '#4daf4a', | |
| '#f781bf', '#a65628', '#984ea3', | |
| '#999999', '#e41a1c', '#dede00'] |