nvimdotfiles/lua/myworkflow/packer.lua
2023-10-20 12:12:04 +02:00

48 lines
1.2 KiB
Lua

-- 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'
-- 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)