disable ghost text in nvim
This commit is contained in:
parent
c50a5ce360
commit
1a87b4c161
2 changed files with 45 additions and 33 deletions
9
dot_config/nvim/lua/plugins/cmp.lua
Normal file
9
dot_config/nvim/lua/plugins/cmp.lua
Normal 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,
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue