You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
zk-nvim/lua/zk/config.lua

20 lines
299 B
Lua

local M = {}
M.defaults = {
picker = "select",
lsp = {
config = {
cmd = { "zk", "lsp" },
name = "zk",
},
auto_attach = {
enabled = true,
filetypes = { "markdown" },
},
},
}
M.options = M.defaults -- not necessary, but better code completion
return M