diff options
| author | Thomas Vanbesien <tvanbesi@proton.me> | 2026-06-07 14:20:40 +0200 |
|---|---|---|
| committer | Thomas Vanbesien <tvanbesi@proton.me> | 2026-06-07 17:26:25 +0200 |
| commit | 413514c0fa7d850a29930caa678c7046e9a9baa9 (patch) | |
| tree | ad0b3fcb2eb8d932fbafd0c5ffea023880275569 /.config/nvim/plugin/50-completion.lua | |
| parent | 54a6c0a2bfe883f70704a3010a82c58c4c9e1ce6 (diff) | |
| download | dotfiles-413514c0fa7d850a29930caa678c7046e9a9baa9.tar.gz dotfiles-413514c0fa7d850a29930caa678c7046e9a9baa9.zip | |
misc(nvim): remove unused option
`popup` overrides `preview`.
Diffstat (limited to '.config/nvim/plugin/50-completion.lua')
| -rw-r--r-- | .config/nvim/plugin/50-completion.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.config/nvim/plugin/50-completion.lua b/.config/nvim/plugin/50-completion.lua index 24d6e01..fe418e8 100644 --- a/.config/nvim/plugin/50-completion.lua +++ b/.config/nvim/plugin/50-completion.lua @@ -13,8 +13,8 @@ vim.opt.completeopt = { "fuzzy", "menuone", -- Show matches in a menu, even if there's only one match "popup", -- Menu items show extra info in the popup window - "preview", -- Show extra info in the preview window } + -- Completion sources (in order of priority) vim.opt.complete = { "o", -- 'omnifunc' |
