🚀 perf(nvim): changed latex symbols to lua package

This commit is contained in:
Sergio Laín 2023-12-03 13:43:53 +01:00
parent 37b893f060
commit 7b1fee6e9d
No known key found for this signature in database
GPG key ID: 14C9B8080681777B

View file

@ -25,10 +25,10 @@ return {
{ {
"hrsh7th/nvim-cmp", "hrsh7th/nvim-cmp",
dependencies = { dependencies = {
"kdheepak/cmp-latex-symbols", "amarakon/nvim-cmp-lua-latex-symbols",
}, },
opts = function(_, opts) opts = function(_, opts)
table.insert(opts.sources, { name = "latex_symbols", priority = 700 }) table.insert(opts.sources, { name = "lua-latex-symbols", option = { cache = true } })
end, end,
}, },
} }