initial import

This commit is contained in:
Fábio André Damas 2025-03-27 08:18:20 +00:00
commit f9f53656f7
32 changed files with 1064 additions and 0 deletions

21
lua/plugins/blink.lua Normal file
View file

@ -0,0 +1,21 @@
return {
{
'saghen/blink.cmp',
dependencies = 'rafamadriz/friendly-snippets',
version = '*',
---@module 'blink.cmp'
---@type blink.cmp.Config
opts = {
keymap = { preset = 'default' },
appearance = {
use_nvim_cmp_as_default = true,
nerd_font_variant = 'mono'
},
signature = { enabled = true },
completion = {
documentation = { auto_show = true, auto_show_delay_ms = 500 },
},
},
opts_extend = { "sources.default" },
} }