diff --git a/.gitignore b/.gitignore new file mode 100644 index 000000000..8927ea33c --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +package.schema.json diff --git a/README.md b/README.md index f5e2e8158..77977d10e 100644 --- a/README.md +++ b/README.md @@ -18,8 +18,11 @@ Compiled registry contents are available via [releases](https://github.com/icefe This repository contains the compiled registry contents for the [mason.nvim](https://github.com/williamboman/mason.nvim) package manager. +The purpose is to list some tools you want to use in Neovim that do not fall under the categories of Compiler, DAP, Formatter, LSP, Linter, or Runtime, and are also not contained in the [core registry](https://github.com/mason-org/mason-registry). + Add packages: -- lazygit +- [lazygit](https://github.com/jesseduffield/lazygit) - A simple terminal UI for git commands. +- [yazi](https://github.com/sxyazi/yazi) - Blazing fast terminal file manager, based on async I/O. ### Usage diff --git a/packages/yazi/package.yaml b/packages/yazi/package.yaml new file mode 100644 index 000000000..010a80d96 --- /dev/null +++ b/packages/yazi/package.yaml @@ -0,0 +1,37 @@ +name: yazi +description: Blazing fast terminal file manager written in Rust, based on async I/O. +homepage: https://github.com/sxyazi/yazi +licenses: + - MIT +languages: [] +categories: [] +source: + id: pkg:github/sxyazi/yazi@v0.3.0 + asset: + - target: darwin_x64 + file: yazi-x86_64-apple-darwin.zip + bin_yazi: yazi + bin_ya: ya + - target: darwin_arm64 + file: yazi-aarch64-apple-darwin.zip + bin_yazi: yazi + bin_ya: ya + - target: linux_x64 + file: yazi-x86_64-unknown-linux-gnu.zip + bin_yazi: yazi + bin_ya: ya + - target: linux_arm64 + file: yazi-aarch64-unknown-linux-gnu.zip + bin_yazi: yazi + bin_ya: ya + - target: win_x64 + file: yazi-x86_64-pc-windows-msvc.zip + bin_yazi: yazi.exe + bin_ya: ya.exe + - target: win_arm64 + file: yazi-aarch64-pc-windows-msvc.zip + bin_yazi: yazi.exe + bin_ya: ya.exe +bin: + yazi: "{{source.asset.bin_yazi}}" + ya: "{{source.asset.bin_ya}"