1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-11-16 23:42:47 +01:00
nixvim/tests/test-sources/plugins/by-name/copilot-lsp/default.nix
2025-10-04 04:37:20 +00:00

18 lines
348 B
Nix

{
empty = {
plugins.copilot-lsp.enable = true;
};
defaults = {
plugins.copilot-lsp = {
enable = true;
settings = {
move_count_threshold = 3;
distance_threshold = 40;
clear_on_large_distance = true;
count_horizontal_moves = true;
reset_on_approaching = true;
};
};
};
}