1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-11-08 19:46:06 +01:00
nixvim/plugins/by-name/copilot-lsp/default.nix
2025-10-04 04:37:20 +00:00

24 lines
616 B
Nix

{ lib, ... }:
lib.nixvim.plugins.mkNeovimPlugin {
name = "copilot-lsp";
package = "copilot-lsp";
description = ''
A lightweight and extensible Neovim plugin for integrating GitHub Copilot's AI-powered
code suggestions via Language Server Protocol (LSP).
> [!NOTE]
> This plugin requires the `copilot-language-server`.
> Either enable through `copilot-lua` plugin or install manually.
'';
maintainers = [ lib.maintainers.khaneliman ];
settingsExample = {
nes = {
move_count_threshold = 5;
distance_threshold = 100;
reset_on_approaching = false;
};
};
}