mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 00:25:42 +02:00
41 lines
683 B
Nix
41 lines
683 B
Nix
{
|
|
empty = {
|
|
plugins.git-worktree.enable = true;
|
|
};
|
|
|
|
telescopeEnabled = {
|
|
plugins.telescope = {
|
|
enable = true;
|
|
};
|
|
|
|
plugins.git-worktree = {
|
|
enable = true;
|
|
|
|
enableTelescope = true;
|
|
|
|
settings = {
|
|
change_directory_command = "tcd";
|
|
update_on_change = true;
|
|
update_on_change_command = "e .";
|
|
clear_jumps_on_change = true;
|
|
};
|
|
};
|
|
|
|
plugins.web-devicons.enable = true;
|
|
};
|
|
|
|
telescopeDisabled = {
|
|
plugins.git-worktree = {
|
|
enable = true;
|
|
|
|
enableTelescope = false;
|
|
};
|
|
};
|
|
|
|
no-packages = {
|
|
plugins.git-worktree = {
|
|
enable = true;
|
|
gitPackage = null;
|
|
};
|
|
};
|
|
}
|