completion: set buffer completion to 4 chars
- Set the keyword_length to 4 in order to lighten the buffer completion. - Add a markdown snippet to add a tags line in my incremental notes. Co-Authored-by: iGor milhit <igor@milhit.ch>
parent
6e1b358779
commit
9214c3e2a7
7
init.lua
7
init.lua
|
@ -588,7 +588,12 @@ cmp.setup {
|
||||||
},
|
},
|
||||||
sources = {
|
sources = {
|
||||||
{ name = 'nvim_lsp' },
|
{ name = 'nvim_lsp' },
|
||||||
{ name = 'buffer' },
|
{
|
||||||
|
name = 'buffer',
|
||||||
|
option = {
|
||||||
|
keyword_length = 4,
|
||||||
|
},
|
||||||
|
},
|
||||||
{ name = 'luasnip' },
|
{ name = 'luasnip' },
|
||||||
{ name = 'path' },
|
{ name = 'path' },
|
||||||
},
|
},
|
||||||
|
|
|
@ -147,5 +147,20 @@ return {
|
||||||
},
|
},
|
||||||
{ repeat_duplicates = true }
|
{ repeat_duplicates = true }
|
||||||
)
|
)
|
||||||
|
),
|
||||||
|
s(
|
||||||
|
{
|
||||||
|
trig = "tags",
|
||||||
|
name = "Tags",
|
||||||
|
dscr = "Insert a one-line tags array, in a text file (markdown)."
|
||||||
|
},
|
||||||
|
fmt(
|
||||||
|
[[
|
||||||
|
tags: [{}]
|
||||||
|
]],
|
||||||
|
{
|
||||||
|
i(1, "tags")
|
||||||
|
}
|
||||||
|
)
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
|
@ -6,3 +6,5 @@ neovim
|
||||||
lua
|
lua
|
||||||
InfoBiblio
|
InfoBiblio
|
||||||
Réaménagement
|
Réaménagement
|
||||||
|
biodiversité
|
||||||
|
hyperindustrialisés
|
||||||
|
|
Binary file not shown.
Loading…
Reference in New Issue