nix-community.nixvim/tests/test-sources/plugins/by-name/zk/default.nix

29 lines
442 B
Nix
Raw Normal View History

2023-04-17 23:13:12 +02:00
{
empty = {
plugins.zk.enable = true;
};
defaults = {
plugins.zk = {
enable = true;
2024-06-28 09:28:58 +02:00
settings = {
picker = "select";
lsp = {
config = {
cmd = [
"zk"
"lsp"
];
name = "zk";
};
auto_attach = {
enabled = true;
filetypes = [ "markdown" ];
};
2023-04-17 23:13:12 +02:00
};
};
};
};
}