diff options
| author | pml68 <pml31@protonmail.com> | 2024-04-24 09:19:34 +0200 |
|---|---|---|
| committer | pml68 <pml31@protonmail.com> | 2024-04-24 09:19:34 +0200 |
| commit | 141d9b25deec11559461c684db0353c92b48e45b (patch) | |
| tree | 416dafcca9f0e46ca855928085c8ef43e8778171 /lua/pml68/configs/cmp.lua | |
| parent | style: fix indenting (hopefully) (diff) | |
| download | nvim-141d9b25deec11559461c684db0353c92b48e45b.tar.gz | |
style: fix indenting part 2
Diffstat (limited to '')
| -rw-r--r-- | lua/pml68/configs/cmp.lua | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/lua/pml68/configs/cmp.lua b/lua/pml68/configs/cmp.lua index 5954499..91d1b5e 100644 --- a/lua/pml68/configs/cmp.lua +++ b/lua/pml68/configs/cmp.lua @@ -3,23 +3,23 @@ local cmp = require("cmp") cmp.setup({ sources = { {name = 'nvim_lsp'}, - {name = 'path'}, - {name = 'vimtex'}, - {name = 'crates'}, + {name = 'path'}, + {name = 'vimtex'}, + {name = 'crates'}, }, - window = { + window = { completion = { border = "rounded", winhighlight = "Normal:Normal", } }, - preselect = 'item', + preselect = 'item', completion = { completeopt = 'menu,menuone,noinsert' }, mapping = cmp.mapping.preset.insert({ ['<CR>'] = cmp.mapping.confirm({select = true}), - ['<S-Tab>'] = cmp.mapping.select_prev_item({behavior = 'select'}), + ['<S-Tab>'] = cmp.mapping.select_prev_item({behavior = 'select'}), ['<Tab>'] = cmp.mapping.select_next_item({behavior = 'select'}), }), snippet = { |
