mirror of
https://github.com/nix-community/nixvim.git
synced 2025-11-16 23:42:47 +01:00
18 lines
348 B
Nix
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;
|
|
};
|
|
};
|
|
};
|
|
}
|