From 6b6de34c221b1a022ab82b84bd9f21854a13a160 Mon Sep 17 00:00:00 2001 From: Gaetan Lepage Date: Fri, 9 Feb 2024 21:14:28 +0100 Subject: [PATCH] tests/modules/files: init --- tests/modules/files.nix | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 tests/modules/files.nix diff --git a/tests/modules/files.nix b/tests/modules/files.nix new file mode 100644 index 00000000..6ee3cbc3 --- /dev/null +++ b/tests/modules/files.nix @@ -0,0 +1,16 @@ +{ + after = { + files."after/ftplugin/python.lua" = { + localOptions.conceallevel = 1; + + keymaps = [ + { + mode = "n"; + key = ""; + action = ":!python script.py"; + options.silent = true; + } + ]; + }; + }; +}