From b67e23e7dfe00b7e09fade087629ba842c5b560f Mon Sep 17 00:00:00 2001 From: Christian Muehlhaeuser Date: Thu, 4 Feb 2021 01:38:52 +0100 Subject: [PATCH] Update default config and documentation --- README.md | 4 ++++ config_cmd.go | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/README.md b/README.md index ecfbf0f..1ee57fa 100644 --- a/README.md +++ b/README.md @@ -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 ``` diff --git a/config_cmd.go b/config_cmd.go index 8d73b1f..a90b903 100644 --- a/config_cmd.go +++ b/config_cmd.go @@ -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`