nix-community.nixvim/tests/test-sources/plugins/completion/coq.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

26 lines
389 B
Nix
Raw Normal View History

{
empty = {
plugins.coq-nvim.enable = true;
};
nixvim-defaults = {
plugins.coq-nvim = {
enable = true;
settings = {
xdg = true;
auto_start = true;
keymap.recommended = true;
completion.always = true;
};
};
};
artifacts = {
plugins.coq-nvim = {
enable = true;
installArtifacts = true;
};
};
}