This commit is contained in:
2023-05-21 21:50:34 +02:00
commit 6d37d8b3ae
6 changed files with 207 additions and 0 deletions

13
lua/plugins.lua Normal file
View File

@ -0,0 +1,13 @@
return require('packer').startup(function(use)
use 'wbthomason/packer.nvim'
use 'williamboman/mason.nvim'
use 'williamboman/mason-lspconfig.nvim'
use 'neovim/nvim-lspconfig'
use 'hrsh7th/nvim-cmp'
use 'hrsh7th/cmp-nvim-lsp'
use 'hrsh7th/cmp-nvim-lsp-signature-help'
use 'hrsh7th/cmp-path'
use 'hrsh7th/cmp-buffer'
use 'nvim-tree/nvim-tree.lua'
end)