From 06d868588a1e4e05061f6508de7f3897e6497984 Mon Sep 17 00:00:00 2001 From: Mayrixon Date: Tue, 18 Jul 2023 14:24:40 +0100 Subject: [PATCH] Reword comments --- lua/lazyvim/plugins/extras/lang/tex.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/lazyvim/plugins/extras/lang/tex.lua b/lua/lazyvim/plugins/extras/lang/tex.lua index 9cd4e823..46eac7ba 100644 --- a/lua/lazyvim/plugins/extras/lang/tex.lua +++ b/lua/lazyvim/plugins/extras/lang/tex.lua @@ -33,7 +33,7 @@ return { config = function() vim.opt.conceallevel = 2 vim.g.vimtex_complete_enabled = 0 -- use texlab for completion - vim.g.vimtex_mappings_disable = { ["n"] = { "K" } } -- disable `K` as the confilict to LSP hover + vim.g.vimtex_mappings_disable = { ["n"] = { "K" } } -- disable `K` as it conflicts with LSP hover vim.g.vimtex_quickfix_method = vim.fn.executable("pplatex") == 1 and "pplatex" or "latexlog" vim.g.vimtex_view_method = vim.fn.has("mac") == 1 and "skim" or "zathura"