From 86e1be0ced79665a554bcff2d0edd67e556ee11f Mon Sep 17 00:00:00 2001 From: Oliver Davies Date: Wed, 4 Jan 2023 22:16:14 +0000 Subject: [PATCH] feat(nvim): add new plugins --- after/plugin/nvim-lastplace.lua | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 after/plugin/nvim-lastplace.lua diff --git a/after/plugin/nvim-lastplace.lua b/after/plugin/nvim-lastplace.lua new file mode 100644 index 0000000..d54cafb --- /dev/null +++ b/after/plugin/nvim-lastplace.lua @@ -0,0 +1,6 @@ +local has_lastplace, lastplace = pcall(require, "nvim-lastplace") +if not has_lastplace then + return +end + +lastplace.setup {}