From 9e8d6526ecd2814673cbdfef4c14db5cfbe83766 Mon Sep 17 00:00:00 2001 From: Simon Guest Date: Tue, 5 Dec 2023 12:00:53 +1300 Subject: [PATCH 1/2] Add reference to nu_plugin_bash_env --- README.md | 1 + config.yaml | 5 +++++ 2 files changed, 6 insertions(+) diff --git a/README.md b/README.md index 91ce1dd..58666fc 100644 --- a/README.md +++ b/README.md @@ -30,6 +30,7 @@ You can find some examples about how to create and use plugins in the [Nushell P - [nu_plugin_json_path](https://github.com/fdncred/nu_plugin_json_path): A nushell plugin for parsing json that uses the json path specification. - [nu_plugin_str_similarity](https://github.com/fdncred/nu_plugin_str_similarity): A nushell plugin that helps you calculate the edit distance between two strings using a variety of algorithms. - [nu_plugin_bexpand](https://codeberg.org/Taywee/nu-plugin-bexpand): Bash style brace expansion for nushell. +- [nu_plugin_bash_env](https://github.com/tesujimath/nu_plugin_bash_env): A Bash environment plugin for nushell - [nu_plugin_highlight](https://github.com/cptpiepmatz/nu-plugin-highlight): 🌈 A nushell plugin for syntax highlighting. - [nu_plugin_emoji](https://github.com/fdncred/nu_plugin_emoji): A nushell plugin that makes finding and printing emojis easy in nushell. - [nu_plugin_kdl](https://github.com/amtoine/nu_plugin_kdl): A plugin to add KDL support to Nushell. diff --git a/config.yaml b/config.yaml index 868a09c..aced878 100644 --- a/config.yaml +++ b/config.yaml @@ -131,6 +131,11 @@ plugins: repository: url: https://codeberg.org/Taywee/nu-plugin-bexpand branch: main + - name: nu_plugin_bash_env + language: bash + repository: + url: https://github.com/tesujimath/nu_plugin_bash_env + branch: main - name: nu_plugin_highlight language: rust repository: From f6a00e2da131b82ba14ffc76218587a472961d94 Mon Sep 17 00:00:00 2001 From: Darren Schroeder <343840+fdncred@users.noreply.github.com> Date: Mon, 4 Dec 2023 17:48:22 -0600 Subject: [PATCH 2/2] move things around a bit --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 58666fc..d0061d4 100644 --- a/README.md +++ b/README.md @@ -30,7 +30,6 @@ You can find some examples about how to create and use plugins in the [Nushell P - [nu_plugin_json_path](https://github.com/fdncred/nu_plugin_json_path): A nushell plugin for parsing json that uses the json path specification. - [nu_plugin_str_similarity](https://github.com/fdncred/nu_plugin_str_similarity): A nushell plugin that helps you calculate the edit distance between two strings using a variety of algorithms. - [nu_plugin_bexpand](https://codeberg.org/Taywee/nu-plugin-bexpand): Bash style brace expansion for nushell. -- [nu_plugin_bash_env](https://github.com/tesujimath/nu_plugin_bash_env): A Bash environment plugin for nushell - [nu_plugin_highlight](https://github.com/cptpiepmatz/nu-plugin-highlight): 🌈 A nushell plugin for syntax highlighting. - [nu_plugin_emoji](https://github.com/fdncred/nu_plugin_emoji): A nushell plugin that makes finding and printing emojis easy in nushell. - [nu_plugin_kdl](https://github.com/amtoine/nu_plugin_kdl): A plugin to add KDL support to Nushell. @@ -43,6 +42,7 @@ You can find some examples about how to create and use plugins in the [Nushell P - [nu_plugin_clipboard](https://github.com/FMotalleb/nu_plugin_clipboard): A nushell plugin to copy text into clipboard or get text from it. - [nu_plugin_qr_maker](https://github.com/FMotalleb/nu_plugin_qr_maker): A nushell plugin to create qr code in terminal. - [nu_plugin_msgpack](https://github.com/hulthe/nu_plugin_msgpack): Nushell plugin for converting to and from msgpack. +- [nu_plugin_bash_env](https://github.com/tesujimath/nu_plugin_bash_env): A Bash environment plugin for nushell. > 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).