X-Git-Url: https://git.madduck.net/etc/lazyvim.git/blobdiff_plain/939065fdb1a76f4772e8e35ad8a0f4ba99d7f46f..d5cf5d5b61bac62dfe0b5ede59f6c107967a5e56:/.config/lazyvim/lua/plugins/blink-compat-lbdb.lua?ds=inline diff --git a/.config/lazyvim/lua/plugins/blink-compat-lbdb.lua b/.config/lazyvim/lua/plugins/blink-compat-lbdb.lua new file mode 100644 index 0000000..19eee59 --- /dev/null +++ b/.config/lazyvim/lua/plugins/blink-compat-lbdb.lua @@ -0,0 +1,33 @@ +return { + { + "saghen/blink.cmp", + dependencies = { + { "saghen/blink.compat" }, + { "codybuell/cmp-lbdb" }, + }, + version = "1.*", + opts = { + sources = { + default = { "lbdb" }, + providers = { + lbdb = { + name = "lbdb", + module = "blink.compat.source", + score_offset = -3, + + opts = { + filetypes = { + "mail", + }, + blacklist = { + ".*noreply.*", + }, + mail_header_only = true, + use_quotes = true, + }, + }, + }, + }, + }, + }, +}