From 734b0ac6fc66f0739b7d6cd8d0844a3506bc52d2 Mon Sep 17 00:00:00 2001 From: Idan Arye Date: Sun, 16 Jun 2024 19:01:26 +0300 Subject: [PATCH 1/2] Add nu_plugin_skim --- README.md | 1 + config.yaml | 5 +++++ 2 files changed, 6 insertions(+) diff --git a/README.md b/README.md index 4118269..ba65b1a 100644 --- a/README.md +++ b/README.md @@ -52,6 +52,7 @@ You can find some examples about how to create and use plugins in the [Nushell P - [nu_plugin_template](https://github.com/fdncred/nu_plugin_template): A `cargo-generate` template for making it easier to create nushell plugins. - [nu_plugin_ulid](https://github.com/lizclipse/nu_plugin_ulid): A nushell plugin that adds various ulid commands. - [nu_plugin_units](https://github.com/JosephTLyons/nu_plugin_units): A Nushell plugin for easily converting between common units. +- [nu_plugin_skim](https://github.com/idanarye/nu_plugin_skim): A Nushell plugin that provides a version of [skim](https://github.com/lotabout/skim) that can handle structured Nushell data. > If the shell freezes while registering the command, that means the plugin is using an older Nu version no longer compatible with your current version. Consider bumping the Nu version to the latest in the `cargo.toml`, (may lead to breaking the script). diff --git a/config.yaml b/config.yaml index 94bb048..a3e6bef 100644 --- a/config.yaml +++ b/config.yaml @@ -254,6 +254,11 @@ plugins: repository: url: https://github.com/drbrain/nu_plugin_prometheus branch: main + - name: nu_plugin_skim + language: rust + repository: + url: https://github.com/idanarye/nu_plugin_skim + branch: main # Example # - name: nu_plugin_bin_reader # the plugins name (mandatory) # language: python # programming language (mandatory) From debb7969d93f4088aaccd2600de738177c1abcbd Mon Sep 17 00:00:00 2001 From: Idan Arye Date: Sun, 16 Jun 2024 22:47:09 +0300 Subject: [PATCH 2/2] Update README.md Co-authored-by: Darren Schroeder <343840+fdncred@users.noreply.github.com> --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index ba65b1a..388477b 100644 --- a/README.md +++ b/README.md @@ -52,7 +52,7 @@ You can find some examples about how to create and use plugins in the [Nushell P - [nu_plugin_template](https://github.com/fdncred/nu_plugin_template): A `cargo-generate` template for making it easier to create nushell plugins. - [nu_plugin_ulid](https://github.com/lizclipse/nu_plugin_ulid): A nushell plugin that adds various ulid commands. - [nu_plugin_units](https://github.com/JosephTLyons/nu_plugin_units): A Nushell plugin for easily converting between common units. -- [nu_plugin_skim](https://github.com/idanarye/nu_plugin_skim): A Nushell plugin that provides a version of [skim](https://github.com/lotabout/skim) that can handle structured Nushell data. +- [nu_plugin_skim](https://github.com/idanarye/nu_plugin_skim): A Nushell plugin that provides a version of [skim](https://github.com/lotabout/skim) that can handle structured Nushell data for MacOS and Linux. > If the shell freezes while registering the command, that means the plugin is using an older Nu version no longer compatible with your current version. Consider bumping the Nu version to the latest in the `cargo.toml`, (may lead to breaking the script).