-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
syncthing-groups.el
54 lines (40 loc) · 1.13 KB
/
syncthing-groups.el
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
;;; syncthing-groups.el --- Client for Syncthing -*- lexical-binding: t; -*-
;; SPDX-License-Identifier: GPL-3.0-or-later
;;; Commentary:
;;; Code:
(defgroup syncthing nil
"Basic configuration."
:group 'external
:group 'communication)
(defgroup syncthing-startup nil
"Start-up stage."
:group 'syncthing)
(defgroup syncthing-debug nil
"Debugging and verbosity configuration."
:group 'syncthing)
(defgroup syncthing-faces nil
"Faces used in client buffers."
:group 'syncthing)
(defgroup syncthing-format nil
"String formatting and templating."
:group 'syncthing)
(defgroup syncthing-times nil
"Times and intervals."
:group 'syncthing)
(defgroup syncthing-limits nil
"Limits and paginations."
:group 'syncthing)
(defgroup syncthing-display nil
"What to display in client buffers."
:group 'syncthing)
(defgroup syncthing-events nil
"Configuration for `syncthing-watcher'."
:group 'syncthing)
(defgroup syncthing-cleanup nil
"Cleanup configuration."
:group 'syncthing)
(defgroup syncthing-themes nil
"Theme configuration."
:group 'syncthing)
(provide 'syncthing-groups)
;;; syncthing-groups.el ends here