forked from renerocksai/sublimeless_zk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
sublimeless_zk-settings.json
123 lines (96 loc) · 3.84 KB
/
sublimeless_zk-settings.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
{
// Theme:
// themes/monokai.json
// themes/monokai-large-headings.json
// themes/solarized_light.json
// themes/C64.json
//
// Default:
// themes/Office.json
"theme": "themes/Office.json",
// The preferred markdown extension
"markdown_extension": ".md",
"new_note_template": "# {id} {title}\n<!-- tags: -->",
// when creating a new link, use [[double brackets]]
// false to use [single brackets]
"double_brackets": true,
// links like "[[199901012359]] and note title" instead of "[[199901012359]]"
"insert_links_with_titles": false,
// when creating a new note, put id into title?
// false to disable
"id_in_title": false,
// prefix for #tags
"tag_prefix": "#",
// when highlighting: also show bookmark symbols in the gutter?
// false to disable
// currently unsupported
"show_bookmarks_in_gutter": true,
// fall-back: location of pandoc if it cannot be found in the PATH
"path_to_pandoc": "/usr/local/bin/pandoc",
// for auto-completion of citekeys and auto-bibs
// enter the full path to your .bib file here
// for citavi enter the path to your citavi project .ctv6 file
"bibfile": "/path/to/zotero.bib",
// type of yoour bibfile: bibtex or citavi
// if nothing is selected bibtex will be the standard
//"bibtype": "citavi",
// make sure images don't get too large
// scale them to max_width, proportionally
// currently unsupported
"img_maxwidth": 320,
// set to true if you want images to be displayed automatically when you open a note
// currently unsupported
"auto_show_images": false,
// separator to use when appending numbered suffix to duplicate headings
// in table of contents. If you use pandoc, change this to a "-".
"toc_suffix_separator": "_",
// use multimarkdown style for citations
// set to false to use pandoc style:
// use [@citekey] to reference something in your .bib file
// autobib style will be: [@citekey]: full-blown reference
// set to true to use multimarkdown style:
// use [][#citekey] to reference something in your .bib file
// autobib style will be: [#citekey]: full-blown reference
// note: for autobib to work you still need pandoc installed in either case
"citations-mmd-style": false,
// seconds in note IDs?
// if true : YYYYMMDDHHMMSS 20171224183045
// if false: YYYYMMDDHHMM 201712241830
"seconds_in_id": true,
// Sort note lists (search results) by
// - title
// - id <-- default
"sort_notelists_by": "id",
// Save unsaved files every n seconds
// if 0: auto-save is disabled
"auto_save_interval": 60,
// ignore the first # heading when inserting section numbers
// this is useful if the first heading is your note title and
// you don't want it numbered
// to ignore: set to true
"skip_first_heading_when_numbering": false,
// convert bibtex entries to unicode
// - set to true: gives you umlauts etc but parsing takes a loooong time
// - set this to false if you have a big .bib file
"convert_bibtex_to_unicode": false,
//
// control the editor
//
// wrap lines or scroll horizontally
"wrap_lines": true,
// show markers at end of line if line is wrapped
"show_wrap_markers": false,
// should wrapped lines be indented?
// like this: this is a long line that gets
// wrapped with indentation
"indent_wrapped_lines": false,
// automatically indent lines?
// if this line is indented and you press return,
// then the cursor will be placed in the next line
// at the same indentation level
"auto_indent": true,
// show indentation guides?
"show_indentation_guides": false,
// use tabs instead of spaces?
"use_tabs": false,
}