nvim: Update zk-nvim

Changes filetypes option placement in configuration.
This commit is contained in:
Marty Oehme 2025-06-06 15:49:27 +02:00
parent 0a927afe60
commit f160a5b4a7
Signed by: Marty
GPG key ID: 4E535BC19C61886E
2 changed files with 4 additions and 2 deletions

View file

@ -88,5 +88,5 @@
"which-key.nvim": { "branch": "main", "commit": "fcbf4eea17cb299c02557d576f0d568878e354a4" }, "which-key.nvim": { "branch": "main", "commit": "fcbf4eea17cb299c02557d576f0d568878e354a4" },
"wrapping.nvim": { "branch": "master", "commit": "3a823200c297885b70515fa8d974e1763c578e26" }, "wrapping.nvim": { "branch": "master", "commit": "3a823200c297885b70515fa8d974e1763c578e26" },
"zen-mode.nvim": { "branch": "main", "commit": "04b52674b8c800f8b7d4609e8bd8d0212e3ffa79" }, "zen-mode.nvim": { "branch": "main", "commit": "04b52674b8c800f8b7d4609e8bd8d0212e3ffa79" },
"zk-nvim": { "branch": "main", "commit": "8fdd7032633045ece559273370fc0ec75ee8ffce" } "zk-nvim": { "branch": "main", "commit": "fd1ab2239ed85ca51051c094a49a280f4ed76bb2" }
} }

View file

@ -213,9 +213,11 @@ local prose_plugs = {
require("zk").setup({ require("zk").setup({
picker = picker, picker = picker,
lsp = { lsp = {
config = {
filetypes = { "markdown", "quarto", "djot" },
},
auto_attach = { auto_attach = {
enabled = true, enabled = true,
filteypes = { "markdown", "quarto", "djot" },
}, },
}, },
}) })