From f876f9acbe9585cfb87589c96168fed5cb8b666b Mon Sep 17 00:00:00 2001 From: Daniel Yrovas Date: Tue, 29 Mar 2022 12:12:35 +1100 Subject: [PATCH] add dic --- .config/lvim/lua/conf/dictionary.lua | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .config/lvim/lua/conf/dictionary.lua 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, +}