h
j
k
l
:help hjkl
0
$
gg
G
#G
<CTRL-O>
<CTRL-I>
w
e
%
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"use strict" | |
const m = require("mithril") | |
const Sample = { | |
currentMark: `# h1 Heading | |
## h2 Heading | |
### h3 Heading | |
#### h4 Heading | |
##### h5 Heading | |
###### h6 Heading |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo apt update | |
sudo apt upgrade | |
# Basic tools | |
sudo apt install curl pdftk asciidoc tmux git | |
# tmuxifier https://github.com/jimeh/tmuxifier | |
git clone --depth=1 https://github.com/jimeh/tmuxifier.git ~/.tmuxifier | |
# add path via .bashrc -- export PATH="$HOME/.tmuxifier/bin:$PATH" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo apt install virtualenv | |
sudo apt install virtualenvwrapper | |
# if workon does not work, try restarting the terminal | |
workon # no existing virtual environments (c.f. lsvirtualenv) | |
mkvirtualenv --python=$(which python) myfirst # init Python 2 virtualenv | |
#New python executable in /home/don/.virtualenvs/myfirst/bin/python | |
#Installing setuptools, pip, wheel...done. | |
# === (myfirst) $ prompt begins |