-
-
Notifications
You must be signed in to change notification settings - Fork 279
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
45714c5
commit 8a67756
Showing
2 changed files
with
18 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,17 @@ | ||
local Pkg = require "mason-core.package" | ||
local cargo = require "mason-core.managers.cargo" | ||
|
||
return Pkg.new { | ||
name = "colorgen-nvim", | ||
desc = [[Blazingly fast colorscheme generator for Neovim written in Rust]], | ||
homepage = "https://github.com/ChristianChiarulli/colorgen-nvim", | ||
languages = {}, | ||
categories = { Pkg.Cat.Compiler }, | ||
install = cargo.crate("colorgen-nvim", { | ||
git = { | ||
url = "https://github.com/ChristianChiarulli/colorgen-nvim", | ||
tag = false, | ||
}, | ||
bin = { "colorgen-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