mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-22 17:03:31 +02:00
26 lines
385 B
Nix
26 lines
385 B
Nix
{
|
|
empty = {
|
|
plugins.zk.enable = true;
|
|
};
|
|
|
|
defaults = {
|
|
plugins.zk = {
|
|
enable = true;
|
|
picker = "select";
|
|
lsp = {
|
|
config = {
|
|
cmd = [
|
|
"zk"
|
|
"lsp"
|
|
];
|
|
name = "zk";
|
|
};
|
|
|
|
autoAttach = {
|
|
enabled = true;
|
|
filetypes = [ "markdown" ];
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|