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.
navigator.lua/lua/navigator/lspclient/init.lua

9 lines
173 B
Lua

local M = {}
M.setup = function(cfg)
cfg = cfg or {}
require('navigator.lspclient.clients').setup(cfg)
require("navigator.lspclient.mapping").setup(cfg)
end
return M