From c22561d18ec06894a7da42cd0fb4a7b611c3b846 Mon Sep 17 00:00:00 2001 From: David Ibia Date: Sun, 10 Mar 2024 12:21:29 +0100 Subject: [PATCH] feat(jupytext.lua): add jupytext plugin configuration to load jupytext.nvim and set lazy loading to false --- lua/absolute/plugins/jupytext.lua | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 lua/absolute/plugins/jupytext.lua diff --git a/lua/absolute/plugins/jupytext.lua b/lua/absolute/plugins/jupytext.lua new file mode 100644 index 0000000..d9a48e5 --- /dev/null +++ b/lua/absolute/plugins/jupytext.lua @@ -0,0 +1,7 @@ +return { + "GCBallesteros/jupytext.nvim", + config = function() + require("absolute.after.jupytext") + end, + lazy = false, +}