mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 16:39:00 +02:00
23 lines
347 B
Nix
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"];
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|