Nushell plugin for interacting with D-Bus

Stop recommending adding `register` to config.nu

I didn't realize that plugin registration is persisted between runs of
nushell in the `plugin.nu` config file (`$nu.plugin-path`)

Because of this, `register` really only needs to be run when you install
or update the plugin.

Adding plugin registrations to `config.nu` leads to longer startup times
and is probably best avoided

+3 -2
+3 -2
README.md
··· 16 16 17 17 ## Install with Cargo 18 18 19 - Run: `cargo install --locked nu_plugin_dbus` 19 + From within nushell: 20 20 21 - Then add `register ~/.cargo/bin/nu_plugin_dbus` to your `~/.config/nushell/config.nu` 21 + cargo install --locked nu_plugin_dbus 22 + register ~/.cargo/bin/nu_plugin_dbus 22 23 23 24 ## Usage 24 25