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
a9fc78d5b6
commit
ccf1fe4030
7
init.lua
7
init.lua
|
@ -588,7 +588,12 @@ cmp.setup {
|
|||
},
|
||||
sources = {
|
||||
{ name = 'nvim_lsp' },
|
||||
{ name = 'buffer' },
|
||||
{
|
||||
name = 'buffer',
|
||||
option = {
|
||||
keyword_length = 4,
|
||||
},
|
||||
},
|
||||
{ name = 'luasnip' },
|
||||
{ name = 'path' },
|
||||
},
|
||||
|
|
|
@ -86,12 +86,12 @@ return {
|
|||
},
|
||||
fmt(
|
||||
[[
|
||||
---
|
||||
title: {1}
|
||||
date: {3}
|
||||
id: {4}
|
||||
tags: [{2}]
|
||||
---
|
||||
---
|
||||
title: {1}
|
||||
date: {3}
|
||||
id: {4}
|
||||
tags: [{2}]
|
||||
---
|
||||
|
||||
]],
|
||||
{
|
||||
|
@ -147,5 +147,20 @@ return {
|
|||
},
|
||||
{ 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
|
||||
InfoBiblio
|
||||
Réaménagement
|
||||
biodiversité
|
||||
hyperindustrialisés
|
||||
|
|
Binary file not shown.
Loading…
Reference in New Issue