blob: 5edf03f38dd5eeca92ec1accedb2c65c6ee33b01 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
local nvim_texlabconfig_status_ok = pcall(require, "nvim-texlabconfig")
if not nvim_texlabconfig_status_ok then
return
end
-- local config = {
-- cache_activate = true,
-- cache_filetypes = { 'tex', 'bib' },
-- cache_root = vim.fn.stdpath('cache'),
-- reverse_search_edit_cmd = 'edit',
-- file_permission_mode = 438,
-- }
local config = function ()
require('texlabconfig').setup(config)
end
|