mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-24 09:48:42 +02:00
plugins/zk: init + tests (#340)
This commit is contained in:
parent
f8c412ba7f
commit
838f616f0a
3 changed files with 79 additions and 0 deletions
23
tests/test-sources/plugins/utils/zk.nix
Normal file
23
tests/test-sources/plugins/utils/zk.nix
Normal file
|
@ -0,0 +1,23 @@
|
|||
{
|
||||
empty = {
|
||||
plugins.zk.enable = true;
|
||||
};
|
||||
|
||||
defaults = {
|
||||
plugins.zk = {
|
||||
enable = true;
|
||||
picker = "select";
|
||||
lsp = {
|
||||
config = {
|
||||
cmd = ["zk" "lsp"];
|
||||
name = "zk";
|
||||
};
|
||||
|
||||
autoAttach = {
|
||||
enabled = true;
|
||||
filetypes = ["markdown"];
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue