dotfiles/.config/lvim/lua/conf/dictionary.lua
Daniel Yrovas f876f9acbe
add dic
2022-03-29 12:12:35 +11:00

11 lines
209 B
Lua

local status_ok, dic = pcall (require, "cmp_dictionary")
if not status_ok then
return
end
dic.setup {
dic = {
["*"] = { "/usr/share/dict/words"}
},
first_case_insensitive = true,
async = true,
}