-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathconfig.yaml.sample
66 lines (60 loc) · 2.12 KB
/
config.yaml.sample
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
## This file needs to be located in $XDG_CONFIG_HOME/congruence. If this
## environment variable is not set, $HOME/.config/congruence is used.
## First the mandatory arguments:
Host: confluence.contoso.local
Protocol: https
## All following arguments are optional
# Proxy: http://localhost:8080
# CA: /home/jdoe/docs/My-Root-CA.pem
Username: john_doe
Password_Command: pass show active_directory
DateFormat: "%Y-%m-%d %H:%M"
## In the following commands, a placeholder for the argument (URL, document
## or whatever) can be specified with %s. If you leave it out, it will
## just be appended.
Editor: vim
CliBrowser: elinks
## Other options for CliBrowser: 'w3m -T text/html', 'lynx -stdin', ...
GuiBrowser: firefox
## Diffs can be piped through external commands which are installed on your
## system. For example, if you want some color highlighting, use this:
# DiffFilter:
# - colordiff
# - diff-highlight
## Here you can change the default palette.
## congruence/palette.py contains a list of all possible values
# Palette:
# focus:
# Foreground: light cyan
# Background: black
## Want to change the key map? Do it here.
## See congruence/keys.py for more information.
# KeyMap:
# exit: X
## The 'plugins' are what you actually see on the main screen.
Plugins:
-
PluginName: API
## For details on how to use CQL, see:
## https://developer.atlassian.com/server/confluence/advanced-searching-using-cql/
DisplayName: Recent changes
Endpoint: search
Parameters:
cql: lastmodified < endOfYear() and not type = attachment order by lastModified desc
limit: 20
expand: content.space,content.history.lastUpdated,content.history.previousVersion,space.homepage.history
excerpt: none
-
PluginName: Search
-
PluginName: Notifications
Limit: 30
-
PluginName: Explorer
## If your Confluence uses the Microblog plugin:
# -
# PluginName: Microblog
# Data: 'thread.topicId:(12 OR 13 OR 14 OR 15 OR 16)'
# Parameters:
# limit: 20
# replyLimit: 9999