aboutsummaryrefslogtreecommitdiffstats
path: root/lua/common_lsp.lua
diff options
context:
space:
mode:
Diffstat (limited to 'lua/common_lsp.lua')
-rw-r--r--lua/common_lsp.lua16
1 files changed, 0 insertions, 16 deletions
diff --git a/lua/common_lsp.lua b/lua/common_lsp.lua
deleted file mode 100644
index 4dea8e1e..00000000
--- a/lua/common_lsp.lua
+++ /dev/null
@@ -1,16 +0,0 @@
-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