Neovim: add cmp-spell source

This commit is contained in:
Marko Korhonen 2023-02-20 16:10:32 +02:00
parent 47233b088f
commit 13ad1b7e88
2 changed files with 2 additions and 0 deletions

View file

@ -55,6 +55,7 @@ return function()
{ name = "nvim_lsp" },
{ name = "nvim_lua" },
{ name = "path" },
{ name = "spell" },
},
})

View file

@ -135,6 +135,7 @@ require("packer").startup(function()
{ "hrsh7th/cmp-path" }, -- Path source
{ "hrsh7th/cmp-cmdline" }, -- cmdline source
{ "saadparwaiz1/cmp_luasnip" }, -- Snippets source
{ "f3fora/cmp-spell" }, -- Spell check source
},
config = require("plugins.cmp"),
})