fix: slightly improve startup times

This commit is contained in:
Oliver Ladner 2025-04-02 14:32:59 +02:00
commit b6f577d9ff
3 changed files with 11 additions and 7 deletions

View file

@ -2,6 +2,8 @@
-- https://github.com/uga-rosa/ccc.nvim
return {
"uga-rosa/ccc.nvim",
lazy = true,
event = { "BufReadPre", "BufNewFile" },
config = function()
local ccc = require("ccc")
local mapping = ccc.mapping

View file

@ -1,5 +1,7 @@
return {
"saghen/blink.cmp",
lazy = true,
event = { "BufReadPre", "BufNewFile" },
-- optional: provides snippets for the snippet source
dependencies = { "rafamadriz/friendly-snippets" },