diff --git a/lua/plugins/blink_pairs.lua b/lua/plugins/blink_pairs.lua index 1917ed1..c1fd61b 100644 --- a/lua/plugins/blink_pairs.lua +++ b/lua/plugins/blink_pairs.lua @@ -1,9 +1,14 @@ ---@type LazyPluginSpec return { 'saghen/blink.pairs', - version = '*', -- (recommended) only required with prebuilt binaries - dependencies = 'saghen/blink.download', - event = 'InsertEnter', + dependencies = { + 'saghen/blink.lib', + 'catppuccin/nvim', + }, + build = function() + require('blink.pairs').build():pwait(60000) + end, + event = { 'BufEnter', 'BufNewFile' }, --- @module 'blink.pairs' --- @type blink.pairs.Config opts = { diff --git a/lua/plugins/colorscheme.lua b/lua/plugins/colorscheme.lua index 7bd8d1a..4444c90 100644 --- a/lua/plugins/colorscheme.lua +++ b/lua/plugins/colorscheme.lua @@ -3,4 +3,13 @@ return { 'catppuccin/nvim', name = 'catppuccin', priority = 1000, + opts = { + auto_integrations = true, + integrations = { + blink_cmp = { + style = 'bordered', + }, + blink_pairs = true, + }, + }, }