Skip to content

Commit

Permalink
add yazi
Browse files Browse the repository at this point in the history
  • Loading branch information
icefed committed Aug 2, 2024
1 parent dc94823 commit 1085978
Show file tree
Hide file tree
Showing 3 changed files with 42 additions and 1 deletion.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
package.schema.json
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
37 changes: 37 additions & 0 deletions packages/yazi/package.yaml
Original file line number Diff line number Diff line change
@@ -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/[email protected]
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}"

0 comments on commit 1085978

Please sign in to comment.