(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:
| ############## | |
| # Xft settings | |
| ############## | |
| Xft.dpi: 96 | |
| Xft.antialias: true | |
| Xft.rgba: rgb | |
| Xft.hinting: true | |
| Xft.hintstyle: hintslight |
| """ | |
| This file has an example function, with a documentation string which should | |
| serve as a template for scikit-learn docstrings. | |
| """ | |
| def sklearn_template(X, y, a=1, flag=True, f=None, **kwargs): | |
| """This is where a short one-line description goes | |
| This is where a longer, multi-line description goes. It's not | |
| required, but might be helpful if more information is needed. |
| #!/bin/bash | |
| sudo add-apt-repository -y ppa:git-core/ppa | |
| sudo apt-get update | |
| sudo apt-get install git -y |
| <!-- Example #1 - no styling --> | |
| Made with ❤ in Switzerland | |
| Made with ♥ in Switzerland | |
| Made with ♡ in Switzerland | |
| Made with ❤️ in Switzerland | |
| Made with ♥️ in Switzerland | |
| <!-- Example #2 - inline-styled ❤ --> | |
| Made with <span style="color: #e25555;">♥</span> in Switzerland | |
| Made with <span style="color: #e25555;">♥</span> in Switzerland |
| ! *----------------------------* | |
| ! | Dotfiles - .Xresources | | |
| ! *----------------------------* | |
| ! This files contains configuration for: | |
| ! * terminal colours | |
| ! * urxvt | |
| ! * rofi |
| # bash commands | |
| # lists all of your conda env | |
| conda env list | |
| # Create a conda env w/ python3.5 | |
| # -n sets the name for your new env. I call it neovim here | |
| conda create -n neovim python=3.5 | |
| # add neovim for python3 to the env | |
| # specify version you want here, 0.1.13 up to date ver atm |
List of Jupyter Lab extensions and my personal (subjective) assesment of their readiness
| Name | Functionality | Readiness | Link |
|---|---|---|---|
| JupyterLab git | GUI for git | Ready to use | https://github.com/jupyterlab/jupyterlab-git |
| SoS | Polyglot notebooks with interop | Ready to use | https://github.com/vatlab/jupyterlab-sos |
| JupyterLab Commenting | Commenting on Notebook cells and lines in files |