Format plugin configurations
This commit is contained in:
@ -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" },
|
||||
},
|
||||
}
|
||||
|
Reference in New Issue
Block a user