-- Only required if you have packer configured as `opt` vim.cmd [[packadd packer.nvim]] return require('packer').startup(function(use) use { 'nvim-telescope/telescope.nvim', requires = { { 'nvim-lua/plenary.nvim' } } } -- fugitive use 'tpope/vim-fugitive' -- Packer can manage itself use 'wbthomason/packer.nvim' use 'mbbill/undotree' use('nvim-treesitter/nvim-treesitter', { run = ':TSUpdate' }) -- Colors use 'ellisonleao/gruvbox.nvim' -- LSP use 'neovim/nvim-lspconfig' use 'simrat39/rust-tools.nvim' use 'akinsho/flutter-tools.nvim' -- call tree use 'ldelossa/litee.nvim' use 'ldelossa/litee-calltree.nvim' -- debugging use 'mfussenegger/nvim-dap' use 'leoluz/nvim-dap-go' use 'rcarriga/nvim-dap-ui' use 'jbyuki/one-small-step-for-vimkind' -- Autocompletion use 'hrsh7th/cmp-nvim-lsp' use 'hrsh7th/cmp-buffer' use 'hrsh7th/cmp-path' use 'hrsh7th/cmp-cmdline' use 'hrsh7th/nvim-cmp' -- Snippets (not really sure what this is for) use 'dcampos/nvim-snippy' use 'dcampos/cmp-snippy' -- Project explorer use { 'nvim-tree/nvim-tree.lua', requires = 'nvim-tree/nvim-web-devicons' } end)