From 67d9612c6af93b781718a434e2f51f45c95b9e84 Mon Sep 17 00:00:00 2001 From: Tony Thayer-Osborne Date: Fri, 23 Jun 2023 14:45:53 -0700 Subject: [PATCH] Adds yaml plugin --- lua/custom/plugins/yaml.lua | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 lua/custom/plugins/yaml.lua diff --git a/lua/custom/plugins/yaml.lua b/lua/custom/plugins/yaml.lua new file mode 100644 index 00000000..aad09b82 --- /dev/null +++ b/lua/custom/plugins/yaml.lua @@ -0,0 +1,6 @@ +return { + "cuducos/yaml.nvim", + config = function() + require("yaml_nvim") + end +}