-
Notifications
You must be signed in to change notification settings - Fork 1
/
.nvpy.cfg
96 lines (76 loc) · 2.9 KB
/
.nvpy.cfg
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
# example nvpy config file
# edit at least the simplenote login details
# then rename to .nvpy.cfg in your home directory.
# all nvpy releases AFTER 0.8 have to have this section
# in 0.8 and older, it used to be [default]
[nvpy]
sn_username = your_simplenote_username
sn_password = your_simplenote_password
# on Linux, there are four different themes you can try here:
# clam, alt, default, classic
# on all platforms, 'default' will pick something appropriate
# see here for examples: http://wiki.tcl.tk/11075
# on Linux, I prefer 'clam'
theme = clam
# font for note editing area
# on windows, consider: consolas, courier
# on linux, consider: droid sans mono, courier (install fonts-droid package first)
# on osx, consider: menlo
# we have "courier" as default, as that maps to a monospace font on all
# platforms.
font_family = courier
font_size = 14
# font for notes list
# helvetica maps to sans font on all platforms
list_font_family = helvetica
# font for notes list when layout = vertical and print_columns = 1
# courier maps to monospaced on all platforms
list_font_family_fixed = Courier
list_font_size = 10
# UI layout
# horizontal: notes list on the left, current note on the right
# vertical: notes list full width at the top, current note below that
# default is horizontal
layout = horizontal
# if the vertical layout is choosen, this option can be used
# to print the notelist in columns.
# The list_font_family_fixed will be used
print_columns = 1
# sort pinned notes on top
pinned_ontop = 1
# default search mode is "gstyle". For example the search string:
# t:work tag:computer solder cpu "fix psu"
# will find all notes with tags
# that start with work and with computer, and containing the words "solder"
# and "cpu" (not necessarily next to each other or even the same order) and
# the phrase "fix psu" juxtaposed
# other search_mode options:
# "regexp" - this will give you full regular expression searching. slower
# than gstyle, but preferred by some for its specificity
search_mode = gstyle
# search case sensitive or not
# default: case sensitive
case_sensitive = 1
# search also in tags
# default: yes
search_tags = 1
# dump notes as text
# EXPERIMENTAL FEATURE! backup your notes before testing.
# default: no
notes_as_txt = 1
# txt notes directory relative to home
txt_path = Dropbox/notes/
# uncomment this to disable simplenote sync altogether
# default is to sync with simplenote
simplenote_sync = 0
# uncomment this to override the default reStructuredText stylesheet with one of
# your own css files. Note that this is only useful when you are rendering a
# reStructuredText (reST) note to HTML.
#rest_css_path = /path/to/my/stylesheet.css
# background color
# needed on Solaris and Openindiana to get rid of the boring grey background
#background = white
# Sets the sort mode
# 0 will sort in alpha, 1 will sort by modification date, 2 will sort by creation date
# default: sort by modification date
#sort_mode = 0