mirror of
https://github.com/nix-community/nixvim.git
synced 2025-11-08 11:36:07 +01:00
24 lines
396 B
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";
|
|
};
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|