From 83392cb3e1ea2a576b940a0e2303b6437a2e3c4b Mon Sep 17 00:00:00 2001 From: Ethan Smith-Coss Date: Sun, 12 Mar 2023 16:06:37 +0000 Subject: [PATCH] Added init.lua template lua script to be changed by developer Signed-off-by: Ethan Smith-Coss --- lua/repo/init.lua | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 lua/repo/init.lua diff --git a/lua/repo/init.lua b/lua/repo/init.lua new file mode 100644 index 0000000..c8ed6ae --- /dev/null +++ b/lua/repo/init.lua @@ -0,0 +1,12 @@ +--[[ + This is an example Lua script which prints to :messages. + + If you see the comment in :messages, then you have successfully hooked this template repository into Neovim. Nice. + You should probably change this file as the entry point into your Neovim extension. There's no use in keeping this, + template example here. Go, be creative and expand the ecosystem. + + Author: Ethan Smith-Coss + Created: 2023-03-12T16:06+0100 +--]] + +print("Hello from template.nvim! Time to start coding ✨🍪") \ No newline at end of file