Skip to content

Commit 0b71af6

Browse files
committed
Update readme
1 parent 2fb34d7 commit 0b71af6

File tree

111 files changed

+29
-76
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

111 files changed

+29
-76
lines changed

von/von/.gitignore

-3
This file was deleted.

von/von/README.mkd

+2-73
211 Bytes
Binary file not shown.
226 Bytes
Binary file not shown.
204 Bytes
Binary file not shown.
208 Bytes
Binary file not shown.
208 Bytes
Binary file not shown.
351 Bytes
Binary file not shown.
540 Bytes
Binary file not shown.
336 Bytes
Binary file not shown.
340 Bytes
Binary file not shown.
340 Bytes
Binary file not shown.
13.3 KB
Binary file not shown.
20.1 KB
Binary file not shown.
13 KB
Binary file not shown.
13.2 KB
Binary file not shown.
13.5 KB
Binary file not shown.
716 Bytes
Binary file not shown.
1.05 KB
Binary file not shown.

von/von/__pycache__/rc.cpython-37.pyc

725 Bytes
Binary file not shown.

von/von/__pycache__/rc.cpython-38.pyc

739 Bytes
Binary file not shown.

von/von/__pycache__/rc.cpython-39.pyc

707 Bytes
Binary file not shown.
5.69 KB
Binary file not shown.
10.9 KB
Binary file not shown.
3.1 KB
Binary file not shown.
5.58 KB
Binary file not shown.
5.67 KB
Binary file not shown.
3.25 KB
Binary file not shown.
5.14 KB
Binary file not shown.
3.19 KB
Binary file not shown.
3.24 KB
Binary file not shown.
3.23 KB
Binary file not shown.
4.6 KB
Binary file not shown.
7.32 KB
Binary file not shown.
4.6 KB
Binary file not shown.
4.68 KB
Binary file not shown.
4.67 KB
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
691 Bytes
Binary file not shown.
Binary file not shown.
678 Bytes
Binary file not shown.
680 Bytes
Binary file not shown.
680 Bytes
Binary file not shown.
Binary file not shown.
Binary file not shown.
414 Bytes
Binary file not shown.
424 Bytes
Binary file not shown.
424 Bytes
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
440 Bytes
Binary file not shown.
450 Bytes
Binary file not shown.
450 Bytes
Binary file not shown.
Binary file not shown.
Binary file not shown.
2.49 KB
Binary file not shown.
2.52 KB
Binary file not shown.
2.53 KB
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
840 Bytes
Binary file not shown.
Binary file not shown.
815 Bytes
Binary file not shown.
835 Bytes
Binary file not shown.

von/von/rc.py

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
import os
2+
3+
# Pick a path to store the problems in
4+
VON_BASE_PATH = os.path.join(os.environ.get("HOME", ""), "Dropbox (MIT)/VON/")
5+
6+
VON_INDEX_NAME = "index"
7+
VON_INDEX_PATH = os.path.join(VON_BASE_PATH, VON_INDEX_NAME)
8+
VON_CACHE_NAME = "cache"
9+
VON_CACHE_PATH = os.path.join(VON_BASE_PATH, VON_CACHE_NAME)
10+
11+
EDITOR = os.environ.get('EDITOR','nvim') # that easy!
12+
BACKUP_DIR = "~/.config/nvim/tmp/" # a directory for storing backups
13+
14+
SEPERATOR = '\n---\n'
15+
NSEPERATOR = '\n' + SEPERATOR + '\n'
16+
17+
TAG_HINT_TEXT = """# Any text you want to display on the YAML editor.
18+
# For example, a list of tags to use."""
19+
20+
USE_COLOR = True
21+
22+
# These particular tags are used for difficulty, and are highlighted differently
23+
# Also used in sorting. Should be in increasing order.
24+
DIFFS= ['ctrivial', 'ceasy', 'cmedium', 'ctricky', 'chard', 'cbrutal',\
25+
'trivial', 'easy', 'medium', 'tricky', 'hard', 'brutal']
26+
27+
# vim: ft=python

0 commit comments

Comments
 (0)