diff options
Diffstat (limited to 'lua/common_lsp.lua')
| -rw-r--r-- | lua/common_lsp.lua | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/lua/common_lsp.lua b/lua/common_lsp.lua index 2ff03e59..eafd5e2c 100644 --- a/lua/common_lsp.lua +++ b/lua/common_lsp.lua @@ -1,8 +1,15 @@ +local skeleton = require 'common_lsp/skeleton' +require 'common_lsp/gopls' +require 'common_lsp/texlab' + local M = { - texlab = require 'common_lsp/texlab'; - gopls = require 'common_lsp/gopls'; util = require 'common_lsp/util'; } -return M +local mt = {} +function mt:__index(k) + return skeleton[k] +end + +return setmetatable(M, mt) -- vim:et ts=2 sw=2 |
