mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 00:25:42 +02:00
28 lines
559 B
Nix
28 lines
559 B
Nix
{
|
|
empty = {
|
|
plugins.coq-nvim.enable = true;
|
|
};
|
|
|
|
nixvim-defaults =
|
|
{ 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;
|
|
};
|
|
};
|
|
}
|