@@ -828,13 +828,13 @@ require('lazy').setup({
828828 -- Accept ([y]es) the completion.
829829 -- This will auto-import if your LSP supports it.
830830 -- This will expand snippets if the LSP sent a snippet.
831- [' <C-y>' ] = cmp .mapping .confirm { select = true },
831+ -- ['<C-y>'] = cmp.mapping.confirm { select = true },
832832
833833 -- If you prefer more traditional completion keymaps,
834834 -- you can uncomment the following lines
835- -- ['<CR>'] = cmp.mapping.confirm { select = true },
836- -- ['<Tab>'] = cmp.mapping.select_next_item(),
837- -- ['<S-Tab>'] = cmp.mapping.select_prev_item(),
835+ [' <CR>' ] = cmp .mapping .confirm { select = true },
836+ [' <Tab>' ] = cmp .mapping .select_next_item (),
837+ [' <S-Tab>' ] = cmp .mapping .select_prev_item (),
838838
839839 -- Manually trigger a completion from nvim-cmp.
840840 -- Generally you don't need this, because nvim-cmp will display
@@ -888,7 +888,7 @@ require('lazy').setup({
888888 -- Load the colorscheme here.
889889 -- Like many other themes, this one has different styles, and you could load
890890 -- any other, such as 'tokyonight-storm', 'tokyonight-moon', or 'tokyonight-day'.
891- vim .cmd .colorscheme ' my- blue'
891+ vim .cmd .colorscheme ' blue'
892892
893893 -- You can configure highlights by doing something like:
894894 vim .cmd .hi ' Comment gui=none'
0 commit comments