From b57fb15344069ce3e65926a08a6cb58b38473f75 Mon Sep 17 00:00:00 2001 From: Gaetan Lepage Date: Fri, 9 Feb 2024 15:23:45 +0100 Subject: [PATCH] tests/goyo: init --- tests/test-sources/plugins/utils/goyo.nix | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 tests/test-sources/plugins/utils/goyo.nix diff --git a/tests/test-sources/plugins/utils/goyo.nix b/tests/test-sources/plugins/utils/goyo.nix new file mode 100644 index 00000000..11d4eab4 --- /dev/null +++ b/tests/test-sources/plugins/utils/goyo.nix @@ -0,0 +1,15 @@ +{ + empty = { + plugins.goyo.enable = true; + }; + + defaults = { + plugins.goyo = { + enable = true; + + width = 80; + height = 85; + showLineNumbers = false; + }; + }; +}