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

19 lines
233 B
Lua

local M = {}
M.defaults = {
lsp = {
auto_attach = {
enabled = true,
filetypes = { "markdown" },
},
config = {
cmd = { "zk", "lsp" },
name = "zk",
},
},
}
M.options = M.defaults
return M