Autocompletion for obsidian is back

nvim-cmp is used, so be it.
This commit is contained in:
Adi De Masi 2025-12-23 17:55:27 +01:00
parent fb480408eb
commit a0a7fd074c
1 changed files with 2 additions and 1 deletions

View File

@ -12,6 +12,7 @@ return {
dependencies = { dependencies = {
'nvim-lua/plenary.nvim', -- Required dependency 'nvim-lua/plenary.nvim', -- Required dependency
'hrsh7th/nvim-cmp',
}, },
opts = function(_, opts) opts = function(_, opts)
@ -36,7 +37,7 @@ return {
-- Optional, completion of wiki links, local markdown links, and tags using nvim-cmp. -- Optional, completion of wiki links, local markdown links, and tags using nvim-cmp.
completion = { completion = {
-- Set to false to disable completion. -- Set to false to disable completion.
nvim_cmp = false, nvim_cmp = true,
-- Trigger completion at 2 chars. -- Trigger completion at 2 chars.
min_chars = 2, min_chars = 2,
}, },