Update default config and documentation

This commit is contained in:
Christian Muehlhaeuser 2021-02-04 01:38:52 +01:00
parent 3285903aae
commit b67e23e7df
No known key found for this signature in database
GPG key ID: 3CF9FA45CA1EBB7E
2 changed files with 8 additions and 0 deletions

View file

@ -176,6 +176,10 @@ Here's an example config:
style: "light"
# show local files only; no network (TUI-mode only)
local: true
# mouse support (TUI-mode only)
mouse: true
# use pager to display markdown
pager: true
# word-wrap at width
width: 80
```

View file

@ -16,6 +16,10 @@ const defaultConfig = `# style name or JSON path (default "auto")
style: "auto"
# show local files only; no network (TUI-mode only)
local: false
# mouse support (TUI-mode only)
mouse: false
# use pager to display markdown
pager: false
# word-wrap at width
width: 80`