Skip to content

Commit

Permalink
fix(completion): fix typo in repos for cmp-emoji and `cmp-latex-sym…
Browse files Browse the repository at this point in the history
…bols`
  • Loading branch information
mehalter committed Jun 3, 2024
1 parent c338c88 commit bc375b8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lua/astrocommunity/completion/cmp-emoji/init.lua
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
return {
"hrsh7th/nvim-cmp",
optional = true,
dependencies = { "kdheepak/cmp-emoji" },
dependencies = { "hrsh7th/cmp-emoji" },
opts = function(_, opts)
if not opts.sources then opts.sources = {} end
table.insert(opts.sources, { name = "emoji", priority = 700 })
Expand Down
2 changes: 1 addition & 1 deletion lua/astrocommunity/completion/cmp-latex-symbols/init.lua
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
return {
"hrsh7th/nvim-cmp",
optional = true,
dependencies = { "kdheepak/cmp-latex-symbols" },
dependencies = { "hrsh7th/cmp-latex-symbols" },
opts = function(_, opts)
if not opts.sources then opts.sources = {} end
table.insert(opts.sources, { name = "latex_symbols", priority = 700 })
Expand Down

0 comments on commit bc375b8

Please sign in to comment.