Format plugin configurations

This commit is contained in:
2025-04-18 13:59:06 -07:00
parent 02cba114d8
commit c1e0902f60
5 changed files with 27 additions and 23 deletions

View File

@ -36,13 +36,17 @@ return {
["<C-e>"] = {},
-- show with a list of providers
["<C-space>"] = { function(cmp) cmp.show({ providers = { "snippets" } }) end },
["<C-space>"] = {
function(cmp)
cmp.show({ providers = { "snippets" } })
end,
},
},
appearance = {
-- "mono" (default) for "Nerd Font Mono" or "normal" for "Nerd Font"
-- Adjusts spacing to ensure icons are aligned
nerd_font_variant = "mono"
nerd_font_variant = "mono",
},
-- (Default) Only show the documentation popup when manually triggered
@ -59,8 +63,8 @@ return {
-- when the Rust fuzzy matcher is not available, by using `implementation = "prefer_rust"`
--
-- See the fuzzy documentation for more information
fuzzy = { implementation = "prefer_rust_with_warning" }
fuzzy = { implementation = "prefer_rust_with_warning" },
},
opts_extend = { "sources.default" }
}
opts_extend = { "sources.default" },
},
}