nix-config/dotfiles/nvim/lua/plugins/cmp.lua
2024-08-03 22:33:30 +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,
}