mirror of
https://github.com/harivansh-afk/nvim.git
synced 2026-04-15 21:03:25 +00:00
new theme + plugins
This commit is contained in:
parent
a8610285c6
commit
675652a4b7
5 changed files with 154 additions and 8 deletions
|
|
@ -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 },
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue