nix-community.nixvim/tests/test-sources/plugins/utils/zk.nix

27 lines
385 B
Nix
Raw Normal View History

2023-04-17 23:13:12 +02:00
{
empty = {
plugins.zk.enable = true;
};
defaults = {
plugins.zk = {
enable = true;
picker = "select";
lsp = {
config = {
2024-05-05 19:39:35 +02:00
cmd = [
"zk"
"lsp"
];
2023-04-17 23:13:12 +02:00
name = "zk";
};
autoAttach = {
enabled = true;
2024-05-05 19:39:35 +02:00
filetypes = [ "markdown" ];
2023-04-17 23:13:12 +02:00
};
};
};
};
}