mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 08:35:43 +02:00
32 lines
604 B
Nix
32 lines
604 B
Nix
{pkgs}: {
|
|
example = {
|
|
plugins.lsp = {
|
|
enable = true;
|
|
|
|
servers.nixd = {
|
|
enable = true;
|
|
|
|
settings = {
|
|
eval = {
|
|
target = {
|
|
args = ["foo" "bar"];
|
|
installable = "";
|
|
};
|
|
depth = 0;
|
|
workers = 3;
|
|
};
|
|
formatting = {
|
|
command = "nixpkgs-fmt";
|
|
};
|
|
options = {
|
|
enable = true;
|
|
target = {
|
|
args = ["yes" "no" "maybe"];
|
|
installable = "";
|
|
};
|
|
};
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|