mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 08:35:43 +02:00
38 lines
636 B
Nix
38 lines
636 B
Nix
{
|
|
empty = {
|
|
plugins.git-worktree.enable = true;
|
|
};
|
|
|
|
telescopeEnabled = {
|
|
plugins.telescope = {
|
|
enable = true;
|
|
};
|
|
|
|
plugins.git-worktree = {
|
|
enable = true;
|
|
|
|
enableTelescope = true;
|
|
changeDirectoryCommand = "tcd";
|
|
updateOnChange = true;
|
|
updateOnChangeCommand = "e .";
|
|
clearJumpsOnChange = true;
|
|
};
|
|
|
|
plugins.web-devicons.enable = true;
|
|
};
|
|
|
|
telescopeDisabled = {
|
|
plugins.git-worktree = {
|
|
enable = true;
|
|
|
|
enableTelescope = false;
|
|
};
|
|
};
|
|
|
|
no-packages = {
|
|
plugins.git-worktree = {
|
|
enable = true;
|
|
gitPackage = null;
|
|
};
|
|
};
|
|
}
|