-
Notifications
You must be signed in to change notification settings - Fork 41.6k
fix(init): turn telescope-fzf-native into a dependecy #384
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix(init): turn telescope-fzf-native into a dependecy #384
Conversation
|
hi! This is a very intriguing contribution. Thanks very much. Could you explain why this is desirable and the testing you've done to ensure that your change won't break anything for people? |
|
@feoh - certainly. RationaleThe top-level list of plugins are plugins that can be directly used by neovim users. Examples:
These top-level plugins can have "dependencies" or other plugins that extend/modify their behavior. Examples (in the same order as above):
Grouping plugins like this also makes for easier discovery and maintenance.
TestingAs for testing, I have made this change in my personal nvim config, |
|
Just to add some more context, lazy.nvim will lazy-load dependencies by default (as per Plugin-Spec). Taking the example from @pbnj about I have done the same approach for things like |
No description provided.