mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-22 17:03:31 +02:00
27 lines
385 B
Nix
27 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" ];
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
}
|