Improve startup speed by properly lazy loading

This commit is contained in:
2025-05-31 05:06:46 +02:00
parent 649653ef8c
commit 7723d66cbf
20 changed files with 170 additions and 86 deletions

View File

@@ -5,6 +5,7 @@ return {
"saghen/blink.cmp",
-- optional: provides snippets for the snippet source
dependencies = { "rafamadriz/friendly-snippets" },
event = "InsertEnter",
-- use a release tag to download pre-built binaries
version = "1.*",
@@ -117,6 +118,10 @@ return {
},
},
cmdline = {
enabled = false,
},
-- (Default) Rust fuzzy matcher for typo resistance and significantly better performance
-- You may use a lua implementation instead by using `implementation = "lua"` or fallback to the lua implementation,
-- when the Rust fuzzy matcher is not available, by using `implementation = "prefer_rust"`