blob: e89b91041c6ab96faad943c22d1ded0ed364f8d8 (
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,
-- }
config = function ()
require('nvim-texlabconfig').setup(config)
end
|