mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-20 16:15:43 +02:00
40 lines
679 B
Nix
40 lines
679 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 = {
|
|
dependencies.git.enable = false;
|
|
|
|
plugins.git-worktree.enable = true;
|
|
};
|
|
}
|