disable ghost text in nvim

This commit is contained in:
insects 2024-07-23 16:44:32 +02:00
parent c50a5ce360
commit 1a87b4c161
2 changed files with 45 additions and 33 deletions

View file

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