diff options
Diffstat (limited to 'lua/user/texcmp.lua')
| -rw-r--r-- | lua/user/texcmp.lua | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/lua/user/texcmp.lua b/lua/user/texcmp.lua new file mode 100644 index 0000000..1338feb --- /dev/null +++ b/lua/user/texcmp.lua @@ -0,0 +1,7 @@ +vim.api.nvim_create_autocmd("FileType", { + group = vim.api.nvim_create_augroup("LaTeXGroup", { clear = true }), + pattern = "tex", + callback = function() + require("config.cmp") + end, +}) |
