| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 | local execute = vim.api.nvim_commandlocal fn = vim.fnlocal install_path = fn.stdpath('data')..'/site/pack/packer/start/packer.nvim'if fn.empty(fn.glob(install_path)) > 0 then  execute('!git clone https://github.com/wbthomason/packer.nvim '..install_path)  execute 'packadd packer.nvim'endreturn require('packer').startup(function()  -- Packer can manage itself as an optional plugin  use {'wbthomason/packer.nvim', opt = true}  -- Information  use 'nanotee/nvim-lua-guide'  -- LSP  use 'neovim/nvim-lspconfig'  use 'glepnir/lspsaga.nvim'  use 'onsails/lspkind-nvim'  use 'kosayoda/nvim-lightbulb'  use 'mfussenegger/nvim-jdtls'  -- Debugging  use 'mfussenegger/nvim-dap'  -- Autocomplete  use 'hrsh7th/nvim-compe'  use 'hrsh7th/vim-vsnip'  -- Treesitter  use { 'nvim-treesitter/nvim-treesitter', run = ':TSUpdate' }  use 'nvim-treesitter/playground'  use 'p00f/nvim-ts-rainbow'  -- Icons  use 'kyazdani42/nvim-web-devicons'  -- Status Line and Bufferline  use 'glepnir/galaxyline.nvim'  use {'akinsho/nvim-bufferline.lua', requires = 'kyazdani42/nvim-web-devicons'}  -- Telescope  use 'nvim-lua/popup.nvim'  use 'nvim-lua/plenary.nvim'  use 'nvim-telescope/telescope.nvim'  use 'nvim-telescope/telescope-media-files.nvim'  -- Explorer  use 'kyazdani42/nvim-tree.lua'  -- Color  use 'christianchiarulli/nvcode-color-schemes.vim'  use 'norcalli/nvim-colorizer.lua'  -- Git  use 'TimUntersberger/neogit'  use {'lewis6991/gitsigns.nvim', requires = { 'nvim-lua/plenary.nvim' } }  -- General Plugins  use 'windwp/nvim-autopairs'  use 'kevinhwang91/nvim-bqf'  use 'unblevable/quick-scope'  use 'airblade/vim-rooter'  use 'b3nj5m1n/kommentary'end)
 |