diff options
author | 2025-05-09 13:30:39 +0300 | |
---|---|---|
committer | 2025-05-09 13:30:39 +0300 | |
commit | 3c64ecfdc2ef309b04e816e360c69f0d2a40e9d9 (patch) | |
tree | 756b461954e646cac36856d8d604b4547ac6d2a0 /lua | |
parent | feat: add `nvim-dap` (diff) | |
download | neovim-configuration-3c64ecfdc2ef309b04e816e360c69f0d2a40e9d9.tar.gz neovim-configuration-3c64ecfdc2ef309b04e816e360c69f0d2a40e9d9.tar.bz2 neovim-configuration-3c64ecfdc2ef309b04e816e360c69f0d2a40e9d9.tar.lz neovim-configuration-3c64ecfdc2ef309b04e816e360c69f0d2a40e9d9.tar.xz neovim-configuration-3c64ecfdc2ef309b04e816e360c69f0d2a40e9d9.tar.zst neovim-configuration-3c64ecfdc2ef309b04e816e360c69f0d2a40e9d9.zip |
fix: disable ghost text in cmdline
Diffstat (limited to 'lua')
-rw-r--r-- | lua/config/plugins/completion.lua | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/lua/config/plugins/completion.lua b/lua/config/plugins/completion.lua index 84b17dd..f567f72 100644 --- a/lua/config/plugins/completion.lua +++ b/lua/config/plugins/completion.lua @@ -44,6 +44,12 @@ return { ghost_text = { enabled = true }, }, + cmdline = { + completion = { + ghost_text = { enabled = false }, + }, + }, + sources = { default = { "lazydev", "lsp", "path", "snippets", "buffer" }, providers = { |