-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: register rockspec with luarocks (#74)
This should allow the GHA to run and successfully push updates to the luarocks manifest.
- Loading branch information
1 parent
8495ebb
commit cfd138c
Showing
4 changed files
with
50 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -29,4 +29,3 @@ jobs: | |
version: ${{ env.LUAROCKS_VERSION }} | ||
dependencies: | | ||
nvim-web-devicons | ||
gitsigns.nvim |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,5 @@ | ||
doc/tags | ||
/luarocks | ||
/lua | ||
/lua_modules | ||
/.luarocks |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
package = "feline.nvim" | ||
version = "dev-1" | ||
source = { | ||
url = "git+ssh://[email protected]/freddiehaddad/feline.nvim.git" | ||
} | ||
description = { | ||
detailed = [[ | ||
![GitHub last commit (branch)](https://img.shields.io/github/last-commit/freddiehaddad/feline.nvim/main?style=for-the-badge) | ||
![GitHub (Pre-)Release Date](https://img.shields.io/github/release-date-pre/freddiehaddad/feline.nvim?style=for-the-badge) | ||
![GitHub issues](https://img.shields.io/github/issues/freddiehaddad/feline.nvim?style=for-the-badge) | ||
![GitHub Discussions](https://img.shields.io/github/discussions/freddiehaddad/feline.nvim?style=for-the-badge) | ||
![GitHub Repo stars](https://img.shields.io/github/stars/freddiehaddad/feline.nvim?style=for-the-badge)]], | ||
homepage = "*** please enter a project homepage ***", | ||
license = "*** please specify a license ***" | ||
} | ||
build = { | ||
type = "builtin", | ||
modules = { | ||
["feline.default_components"] = "lua/feline/default_components.lua", | ||
["feline.defaults"] = "lua/feline/defaults.lua", | ||
["feline.generator"] = "lua/feline/generator.lua", | ||
["feline.init"] = "lua/feline/init.lua", | ||
["feline.providers.cursor"] = "lua/feline/providers/cursor.lua", | ||
["feline.providers.file"] = "lua/feline/providers/file.lua", | ||
["feline.providers.git"] = "lua/feline/providers/git.lua", | ||
["feline.providers.init"] = "lua/feline/providers/init.lua", | ||
["feline.providers.lsp"] = "lua/feline/providers/lsp.lua", | ||
["feline.providers.statuscolumn"] = "lua/feline/providers/statuscolumn.lua", | ||
["feline.providers.vi_mode"] = "lua/feline/providers/vi_mode.lua", | ||
["feline.themes.default"] = "lua/feline/themes/default.lua", | ||
["feline.themes.init"] = "lua/feline/themes/init.lua", | ||
["feline.utils"] = "lua/feline/utils.lua" | ||
}, | ||
copy_directories = { | ||
"doc" | ||
} | ||
} |