You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+9-5Lines changed: 9 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -68,7 +68,7 @@ The configuration instructions below include code that will install Lazy-Nix-Hel
68
68
+ treats `-` and `_` as identical
69
69
+ add or subtracts `.nvim` from the plugin name as needed
70
70
71
-
in most cases setting this to true will make updating your configuration much easier. if there is a plugin name collision with these rules applied then lazy-nix-helper will thrown an error. in that case you will have to set this option to false and match plugin names exactly.
71
+
if there is a plugin name collision with these rules applied then lazy-nix-helper will thrown an error. in that case you will have to set this option to false and match plugin names exactly.
72
72
73
73
-`auto_plugin_discovery`: when set to `true` enables the automatic plugin discovery originally included in Lazy-Nix-Helper. the automatic plugin discovery is a nix anti-pattern and only works for a subset of nix/nixos use cases and config arrangements. this option has been left in place to let early adopters of Lazy-Nix-Helper keep their original configuration, but it should be set to `false` for all new configurations
74
74
-`input_plugin_table`: the plugin table mapping plugin names to plugin paths generated by your nix config. instructions for generating this table are provided in the NixOS Configuration section
@@ -400,19 +400,23 @@ Besides Lazy-Nix-Helper there are other tools and strategies you might choose to
400
400
401
401
Use the `:Lazy` command to open the Lazy dashboard. The source directory is listed for each plugin
402
402
403
-
### How do I check which path Lazy-Nix-Helper has found for a plugin?
403
+
### How do I check the plugin list that was supplied to Lazy-Nix-Helper?
404
404
405
-
Run the `get_plugin_path` function manually: `:lua print(require("lazy-nix-helper").get_plugin_path("<plugin-name>"))`
405
+
Run the `list_input_plugins` function manually: `lua require("lazy-nix-helper").list_input_plugins()`
406
406
407
-
### How do I check all of the plugins that Lazy-Nix-Helper has found?
407
+
### How do I check which plugins were found on the system by Lazy-Nix-Helper?
408
408
409
409
Run the `list_discovered_plugins` function manually: `lua require("lazy-nix-helper").list_discovered_plugins()`
410
410
411
+
### How do I check which path Lazy-Nix-Helper has found for a plugin?
412
+
413
+
Run the `get_plugin_path` function manually: `:lua print(require("lazy-nix-helper").get_plugin_path("<plugin-name>"))`
414
+
411
415
### I don't think Lazy-Nix-Helper is correctly detecting when I'm on NixOS
412
416
413
417
Run the `print_environment_info` function manually to see:
414
418
- if Lazy-Nix-Helper thinks you're on NixOS or not
415
-
- if Lazy-Nix-Helper thinks nix-store is installed or not
419
+
- if Lazy-Nix-Helper thinks nix-store is installed or not (only relevant for legacy automatic plugin discovery)
0 commit comments