Compare commits
1 commit
trunk
...
trunk-upst
Author | SHA1 | Date | |
---|---|---|---|
|
f876f9acbe |
1 changed files with 11 additions and 0 deletions
11
.config/lvim/lua/conf/dictionary.lua
Normal file
11
.config/lvim/lua/conf/dictionary.lua
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
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,
|
||||||
|
}
|
Loading…
Add table
Add a link
Reference in a new issue