From c87cc7c3874e84ce9e8af64fc6ca11480a7cf8f0 Mon Sep 17 00:00:00 2001 From: Jonathan Apodaca Date: Tue, 12 Nov 2024 10:04:27 -0700 Subject: [PATCH] add rockspec --- .gitignore | 1 + u.nvim-0.2.0-1.rockspec | 24 ++++++++++++++++++++++++ 2 files changed, 25 insertions(+) create mode 100644 .gitignore create mode 100644 u.nvim-0.2.0-1.rockspec diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..c3a523b --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +*.src.rock diff --git a/u.nvim-0.2.0-1.rockspec b/u.nvim-0.2.0-1.rockspec new file mode 100644 index 0000000..a2dfd80 --- /dev/null +++ b/u.nvim-0.2.0-1.rockspec @@ -0,0 +1,24 @@ +package = "u.nvim" +version = "0.2.0-1" +source = { + url = "git+https://github.com/jrop/u.nvim" +} +description = { + summary = "nvim – a powerful Lua library designed to enhance your text manipulation experience in NeoVim, focusing primarily on a context-aware \"Range\" utility.", + detailed = "Welcome to u.nvim – a powerful Lua library designed to enhance your text manipulation experience in NeoVim, focusing primarily on a context-aware \"Range\" utility. This utility allows you to work efficiently with text selections based on various conditions, in a variety of contexts, making coding and editing more intuitive and productive.", + homepage = "https://github.com/jrop/u.nvim", + license = "MIT" +} +build = { + type = "builtin", + modules = { + ["u.buffer"] = "lua/u/buffer.lua", + ["u.codewriter"] = "lua/u/codewriter.lua", + ["u.opkeymap"] = "lua/u/opkeymap.lua", + ["u.pos"] = "lua/u/pos.lua", + ["u.range"] = "lua/u/range.lua", + ["u.repeat"] = "lua/u/repeat.lua", + ["u.state"] = "lua/u/state.lua", + ["u.utils"] = "lua/u/utils.lua" + } +}