Skip to content

Commit f1aa624

Browse files
committed
documentation
1 parent 16cfde7 commit f1aa624

File tree

2 files changed

+17
-4
lines changed

2 files changed

+17
-4
lines changed

README.md

+9-2
Original file line numberDiff line numberDiff line change
@@ -296,8 +296,15 @@ This is a complete list of all of the options that can be passed to `require("ob
296296
completion = {
297297
-- Enables completion using nvim_cmp
298298
nvim_cmp = true,
299-
-- Enables completion using blink.cmp
300-
blink = false,
299+
-- Enables completion using blink.cmp
300+
blink = {
301+
-- Enables completion using blink.cmp
302+
enabled = true,
303+
-- Blink.cmp sources configuration (Optional)
304+
obsidian = {...},
305+
obsidian_tags = {...},
306+
obsidian_new = {...},
307+
},
301308
-- Trigger completion at 2 chars.
302309
min_chars = 2,
303310
},

doc/obsidian.txt

+8-2
Original file line numberDiff line numberDiff line change
@@ -348,8 +348,14 @@ carefully and customize it to your needs:
348348
completion = {
349349
-- Enables completion using nvim_cmp
350350
nvim_cmp = true,
351-
-- Enables completion using blink.cmp
352-
blink = false,
351+
blink = {
352+
-- Enables completion using blink.cmp
353+
enabled = true,
354+
-- Blink.cmp sources configuration (Optional)
355+
obsidian = {...},
356+
obsidian_tags = {...},
357+
obsidian_new = {...},
358+
},
353359
-- Trigger completion at 2 chars.
354360
min_chars = 2,
355361
},

0 commit comments

Comments
 (0)