mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 16:39:00 +02:00
30 lines
605 B
Nix
30 lines
605 B
Nix
{
|
|
empty = {
|
|
plugins.coq-nvim.enable = true;
|
|
};
|
|
|
|
nixvim-defaults = {
|
|
module =
|
|
{ pkgs, ... }:
|
|
{
|
|
plugins.coq-nvim = {
|
|
# It seems that the plugin has issues being executed in the same derivation
|
|
enable = !(pkgs.stdenv.isDarwin && pkgs.stdenv.isx86_64);
|
|
|
|
settings = {
|
|
xdg = true;
|
|
auto_start = true;
|
|
keymap.recommended = true;
|
|
completion.always = true;
|
|
};
|
|
};
|
|
};
|
|
};
|
|
|
|
artifacts = {
|
|
plugins.coq-nvim = {
|
|
enable = true;
|
|
installArtifacts = true;
|
|
};
|
|
};
|
|
}
|