File tree 2 files changed +17
-4
lines changed
2 files changed +17
-4
lines changed Original file line number Diff line number Diff line change @@ -296,8 +296,15 @@ This is a complete list of all of the options that can be passed to `require("ob
296
296
completion = {
297
297
-- Enables completion using nvim_cmp
298
298
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
+ },
301
308
-- Trigger completion at 2 chars.
302
309
min_chars = 2 ,
303
310
},
Original file line number Diff line number Diff line change @@ -348,8 +348,14 @@ carefully and customize it to your needs:
348
348
completion = {
349
349
-- Enables completion using nvim_cmp
350
350
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
+ },
353
359
-- Trigger completion at 2 chars.
354
360
min_chars = 2,
355
361
},
You can’t perform that action at this time.
0 commit comments