blob: dbd883b4357a4da3fd5968b68343d6e41e1dd3d3 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
;; -*- mode: lisp -*-
;; vim: set ft=lisp :
;;
;; krino's main configuration. The syntax is explained in sexp-primer.md,
;; installed as share/doc/krino/sexp-primer.md under the install prefix,
;; which is ~/.local by default; every form is described in krino.conf(5).
;; The directories to sort, in this order. Each NAME has its rules in
;; dirs/NAME.conf. Add one with: krino new NAME PATH
(include)
;; Where the log goes. Remove the ";; " to change it.
;; (log "~/.local/state/krino/krino.log")
;; Defaults for every directory; a directory's own file can override them.
;; (defaults
;; (case ignore) ; ignore | strict
;; (fold yes) ; yes: "spolka" matches "spółka"
;; (recursive no)
;; (min-age 2m) ; skip files modified in the last 2 minutes
;; (max-read 50M) ; no content extraction above this size
;; (busy ".part" ".aria2" ".crdownload")
;; (on-conflict suffix)) ; suffix | skip | overwrite
|