home/dot_config/nvim/lua/plugins/cmp.lua
2024-07-23 16:44:32 +02:00

9 lines
179 B
Lua

return {
"hrsh7th/nvim-cmp",
opts = function(_, opts)
opts.experimental = {
-- Disable ghost text because it pisses me off.
ghost_text = false,
}
end,
}