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

10 lines
217 B
Lua

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