From 69a4fc1942363fa9bb27b5dca8bf4fcb9aef1c76 Mon Sep 17 00:00:00 2001 From: Snoweuph Date: Wed, 3 Jul 2024 01:10:09 +0200 Subject: [PATCH] setup --- Readme.md | 27 +++++++++++++++++++++++++++ lua/${REPO_NAME_LOWER_KEBAB}/init.lua | 0 2 files changed, 27 insertions(+) create mode 100644 Readme.md create mode 100644 lua/${REPO_NAME_LOWER_KEBAB}/init.lua diff --git a/Readme.md b/Readme.md new file mode 100644 index 0000000..27ba827 --- /dev/null +++ b/Readme.md @@ -0,0 +1,27 @@ +# $REPO_NAME +![Neovim Badge](https://img.shields.io/badge/${REPO_NAME_LOWER}-_?style=for-the-badge&logo=neovim&labelColor=gray&color=limegreen) + +## Description + + +## Installation + +### [Lazy](https://github.com/folke/lazy.nvim) +```lua +return { + '${REPO_LINK}', + config = function() + require('${REPO_NAME_LOWER_KEBAB}').setup() + end +} +``` + +### [Plug](https://github.com/junegunn/vim-plug) +```lua +Plug '${REPO_NAME_LOWER_KEBAB}' +``` + +### [Packer](https://github.com/wbthomason/packer.nvim) +```lua +use '${REPO_NAME_LOWER_KEBAB}' +``` diff --git a/lua/${REPO_NAME_LOWER_KEBAB}/init.lua b/lua/${REPO_NAME_LOWER_KEBAB}/init.lua new file mode 100644 index 0000000..e69de29