plugins/refactoring: add telescope option

refactoring.nvim comes with a telescope picker that can be used via

```lua
require('telescope').extensions.refactoring.refactors
```
This commit is contained in:
Matt Sturgeon 2024-05-24 17:42:44 +01:00
parent 61cc6e9f22
commit beb86eec7c
No known key found for this signature in database
GPG key ID: 4F91844CED1A8299
2 changed files with 27 additions and 0 deletions

View file

@ -28,6 +28,15 @@
};
};
withTelescope = {
plugins.telescope.enable = true;
plugins.refactoring = {
enable = true;
enableTelescope = true;
};
};
defaults = {
plugins.refactoring = {
enable = true;