diff --git a/.config/lvim/lua/conf/dictionary.lua b/.config/lvim/lua/conf/dictionary.lua new file mode 100644 index 0000000..19b820e --- /dev/null +++ b/.config/lvim/lua/conf/dictionary.lua @@ -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, +}