-
Notifications
You must be signed in to change notification settings - Fork 2
/
snclirc
29 lines (23 loc) · 1.09 KB
/
snclirc
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
[sncli]
cfg_sn_username = [email protected]
#cfg_sn_password = supersecretpassword
# as an alternate to cfg_sn_password you could use the following config item
# any shell command can be used; its stdout is used for the password
# trailing newlines are stripped for ease of use
# note: if both password config are given, cfg_sn_password will be used
cfg_sn_password_eval = keybase pgp decrypt -i ~/.sncli-pass.pgp
# see http://urwid.org/manual/userinput.html for examples of more key combinations
kb_edit_note = space
kb_page_down = ctrl f
# note that values must not be quoted
clr_note_focus_bg = light blue
# if this editor config value is not provided, the $EDITOR env var will be used instead
# warning: if neither $EDITOR or cfg_editor is set, it will be impossible to edit notes
#cfg_editor = vim
# alternatively, {fname} and/or {line} are substituted with the filename and
# current line number in sncli's pager.
# If {fname} isn't supplied, the filename is simply appended.
# examples:
cfg_editor = vim {fname} +{line}
# this is also supported for the pager:
cfg_pager = less -c +{line} -N {fname}