From c959b2112fb4c82b5bfd410df21706455225bd40 Mon Sep 17 00:00:00 2001 From: Your Name Date: Wed, 3 Jul 2024 17:03:56 +0100 Subject: minor additions --- lua/user/texcmp.lua | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 lua/user/texcmp.lua (limited to 'lua/user/texcmp.lua') 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, +}) -- cgit v1.2.3