├── .busted ├── .editorconfig ├── .github └── workflows │ ├── linter.yml │ ├── release.yml │ └── tests.yml ├── .gitignore ├── .luacheckrc ├── README.md ├── nvim-lua-plugin-scm-1.rockspec └── spec └── example_spec.lua /.busted: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvim-lua/nvim-lua-plugin-template/HEAD/.busted -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvim-lua/nvim-lua-plugin-template/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/linter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvim-lua/nvim-lua-plugin-template/HEAD/.github/workflows/linter.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvim-lua/nvim-lua-plugin-template/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvim-lua/nvim-lua-plugin-template/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvim-lua/nvim-lua-plugin-template/HEAD/.gitignore -------------------------------------------------------------------------------- /.luacheckrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvim-lua/nvim-lua-plugin-template/HEAD/.luacheckrc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvim-lua/nvim-lua-plugin-template/HEAD/README.md -------------------------------------------------------------------------------- /nvim-lua-plugin-scm-1.rockspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvim-lua/nvim-lua-plugin-template/HEAD/nvim-lua-plugin-scm-1.rockspec -------------------------------------------------------------------------------- /spec/example_spec.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvim-lua/nvim-lua-plugin-template/HEAD/spec/example_spec.lua --------------------------------------------------------------------------------