diff options
| author | pml68 <tutorialmester@gmail.com> | 2024-03-18 21:42:10 +0100 |
|---|---|---|
| committer | pml68 <tutorialmester@gmail.com> | 2024-03-18 21:42:10 +0100 |
| commit | e099d2c69472e8ebe940671bfff76368c5143bc2 (patch) | |
| tree | 6a53bf8dca2f863a51e54e98d79183e64f549320 /lua/pml68/configs/cmp.lua | |
| parent | feat: autocompletion, keymaps and more (diff) | |
| download | nvim-e099d2c69472e8ebe940671bfff76368c5143bc2.tar.gz | |
feat: set CMP to use the Normal highlight group
Diffstat (limited to '')
| -rw-r--r-- | lua/pml68/configs/cmp.lua | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/lua/pml68/configs/cmp.lua b/lua/pml68/configs/cmp.lua index ff69651..e4c2ed2 100644 --- a/lua/pml68/configs/cmp.lua +++ b/lua/pml68/configs/cmp.lua @@ -4,6 +4,12 @@ cmp.setup({ sources = { {name = 'nvim_lsp'}, }, + window = { + completion = { + border = "rounded", + winhighlight = "Normal:Normal", + } + }, preselect = 'item', completion = { completeopt = 'menu,menuone,noinsert' |
