@@ -797,13 +797,13 @@ require('lazy').setup({
797797 -- Accept ([y]es) the completion.
798798 -- This will auto-import if your LSP supports it.
799799 -- This will expand snippets if the LSP sent a snippet.
800- [' <C-y ' ] = cmp .mapping .confirm { select = true },
800+ -- ['<Tab> '] = cmp.mapping.confirm { select = true },
801801
802802 -- If you prefer more traditional completion keymaps,
803803 -- you can uncomment the following lines
804- -- ['<CR>'] = cmp.mapping.confirm { select = true },
805- -- ['<Tab>'] = cmp.mapping.select_next_item(),
806- -- ['<S-Tab>'] = cmp.mapping.select_prev_item(),
804+ [' <CR>' ] = cmp .mapping .confirm { select = true },
805+ [' <Tab>' ] = cmp .mapping .select_next_item (),
806+ [' <S-Tab>' ] = cmp .mapping .select_prev_item (),
807807
808808 -- Manually trigger a completion from nvim-cmp.
809809 -- Generally you don't need this, because nvim-cmp will display
@@ -851,13 +851,13 @@ require('lazy').setup({
851851 -- change the command in the config to whatever the name of that colorscheme is.
852852 --
853853 -- If you want to see what colorschemes are already installed, you can use `:Telescope colorscheme`.
854- ' folke/tokyonight. nvim' ,
854+ ' catppuccin/ nvim' ,
855855 priority = 1000 , -- Make sure to load this before all the other start plugins.
856856 init = function ()
857857 -- Load the colorscheme here.
858858 -- Like many other themes, this one has different styles, and you could load
859859 -- any other, such as 'tokyonight-storm', 'tokyonight-moon', or 'tokyonight-day'.
860- vim .cmd .colorscheme ' tokyonight-night '
860+ vim .cmd .colorscheme ' catppuccin-mocha '
861861
862862 -- You can configure highlights by doing something like:
863863 vim .cmd .hi ' Comment gui=none'
0 commit comments