1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-11-08 11:36:07 +01:00
nixvim/tests/test-sources/plugins/by-name/treesitter-refactor/default.nix

24 lines
396 B
Nix

{
empty = {
plugins = {
treesitter.enable = true;
treesitter-refactor.enable = true;
};
};
example = {
plugins = {
treesitter.enable = true;
treesitter-refactor = {
enable = true;
settings = {
smart_rename = {
enable = true;
keymaps.smart_rename = "grr";
};
};
};
};
};
}