mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-22 08:53:28 +02:00
28 lines
442 B
Nix
28 lines
442 B
Nix
{
|
|
empty = {
|
|
plugins.zk.enable = true;
|
|
};
|
|
|
|
defaults = {
|
|
plugins.zk = {
|
|
enable = true;
|
|
|
|
settings = {
|
|
picker = "select";
|
|
lsp = {
|
|
config = {
|
|
cmd = [
|
|
"zk"
|
|
"lsp"
|
|
];
|
|
name = "zk";
|
|
};
|
|
auto_attach = {
|
|
enabled = true;
|
|
filetypes = [ "markdown" ];
|
|
};
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|