Autocompletion for obsidian is back
nvim-cmp is used, so be it.
This commit is contained in:
parent
fb480408eb
commit
a0a7fd074c
|
|
@ -12,6 +12,7 @@ return {
|
|||
|
||||
dependencies = {
|
||||
'nvim-lua/plenary.nvim', -- Required dependency
|
||||
'hrsh7th/nvim-cmp',
|
||||
},
|
||||
|
||||
opts = function(_, opts)
|
||||
|
|
@ -36,7 +37,7 @@ return {
|
|||
-- Optional, completion of wiki links, local markdown links, and tags using nvim-cmp.
|
||||
completion = {
|
||||
-- Set to false to disable completion.
|
||||
nvim_cmp = false,
|
||||
nvim_cmp = true,
|
||||
-- Trigger completion at 2 chars.
|
||||
min_chars = 2,
|
||||
},
|
||||
|
|
|
|||
Loading…
Reference in New Issue