new theme + plugins

This commit is contained in:
Harivansh Rathi 2025-10-25 21:52:45 -04:00
parent a8610285c6
commit 675652a4b7
5 changed files with 154 additions and 8 deletions

View file

@ -15,7 +15,17 @@ return {
return {
keymap = {
preset = "super-tab",
preset = "enter", -- Changed from "super-tab" to "enter"
['<C-space>'] = { 'show', 'show_documentation', 'hide_documentation' },
['<C-e>'] = { 'hide' },
['<C-y>'] = { 'select_and_accept' },
['<C-p>'] = { 'select_prev', 'fallback' },
['<C-n>'] = { 'select_next', 'fallback' },
['<C-b>'] = { 'scroll_documentation_up', 'fallback' },
['<C-f>'] = { 'scroll_documentation_down', 'fallback' },
['<A-1>'] = { function(cmp) cmp.accept({ index = 1 }) end },
['<A-2>'] = { function(cmp) cmp.accept({ index = 2 }) end },
['<A-3>'] = { function(cmp) cmp.accept({ index = 3 }) end },