aboutsummaryrefslogtreecommitdiffstats
path: root/lua/common_lsp.lua
blob: 4dea8e1ec421866f70c3c9eb2670689f85a20ecf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
local skeleton = require 'common_lsp/skeleton'
require 'common_lsp/gopls'
require 'common_lsp/texlab'
require 'common_lsp/clangd'

local M = {
  util = require 'common_lsp/util';
}

local mt = {}
function mt:__index(k)
  return skeleton[k]
end

return setmetatable(M, mt)
-- vim:et ts=2 sw=2