nix-community.nixvim/tests/test-sources/plugins/by-name/zk/default.nix
2024-09-09 11:50:38 +01:00

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" ];
};
};
};
};
};
}