add copilot and some other packages

This commit is contained in:
Przemyslaw Chudzia 2023-12-13 09:19:46 +01:00
parent 3581d0d457
commit 41f80d7729
2 changed files with 7 additions and 2 deletions

View file

@ -71,6 +71,9 @@ require('lazy').setup({
'tpope/vim-fugitive',
'tpope/vim-rhubarb',
-- Copilot
'github/copilot.vim',
-- Detect tabstop and shiftwidth automatically
'tpope/vim-sleuth',
@ -103,6 +106,7 @@ require('lazy').setup({
-- Adds LSP completion capabilities
'hrsh7th/cmp-nvim-lsp',
'hrsh7th/cmp-path',
-- Adds a number of user-friendly snippets
'rafamadriz/friendly-snippets',
@ -569,6 +573,7 @@ cmp.setup {
sources = {
{ name = 'nvim_lsp' },
{ name = 'luasnip' },
{ name = 'path' },
},
}