nix-community.nixvim/tests/test-sources/plugins/utils/zk.nix
2023-04-17 23:13:12 +02:00

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