aboutsummaryrefslogtreecommitdiffstats
path: root/lua/nvim_lsp/texlab.lua
diff options
context:
space:
mode:
Diffstat (limited to 'lua/nvim_lsp/texlab.lua')
-rw-r--r--lua/nvim_lsp/texlab.lua6
1 files changed, 3 insertions, 3 deletions
diff --git a/lua/nvim_lsp/texlab.lua b/lua/nvim_lsp/texlab.lua
index 79ede52c..37021ee6 100644
--- a/lua/nvim_lsp/texlab.lua
+++ b/lua/nvim_lsp/texlab.lua
@@ -1,4 +1,4 @@
-local skeleton = require 'nvim_lsp/skeleton'
+local configs = require 'nvim_lsp/configs'
local util = require 'nvim_lsp/util'
local lsp = vim.lsp
@@ -31,7 +31,7 @@ end
-- end)
-- end
-skeleton.texlab = {
+configs.texlab = {
default_config = {
cmd = {"texlab"};
filetypes = {"tex", "bib"};
@@ -86,5 +86,5 @@ See https://texlab.netlify.com/docs/reference/configuration for configuration op
};
}
-skeleton.texlab.buf_build = buf_build
+configs.texlab.buf_build = buf_build
-- vim:et ts=2 sw=2