2022-07-04 14:04:29 +02:00
|
|
|
require('packer').startup(function(use)
|
2022-07-04 14:31:30 +02:00
|
|
|
use 'ggandor/leap.nvim'
|
2022-07-04 14:04:29 +02:00
|
|
|
use 'ConradIrwin/vim-bracketed-paste'
|
|
|
|
use 'cappyzawa/trim.nvim'
|
|
|
|
use "rafamadriz/friendly-snippets"
|
|
|
|
use 'christoomey/vim-tmux-navigator'
|
|
|
|
use 'editorconfig/editorconfig-vim'
|
|
|
|
use 'ervandew/supertab'
|
|
|
|
use 'hrsh7th/cmp-buffer'
|
|
|
|
use 'hrsh7th/cmp-cmdline'
|
|
|
|
use 'hrsh7th/cmp-nvim-lsp'
|
|
|
|
use 'hrsh7th/cmp-path'
|
|
|
|
use 'hrsh7th/vim-vsnip-integ'
|
|
|
|
use 'hrsh7th/cmp-vsnip'
|
|
|
|
use 'hrsh7th/nvim-cmp'
|
|
|
|
use 'hrsh7th/vim-vsnip'
|
|
|
|
use 'kristijanhusak/vim-hybrid-material'
|
|
|
|
use 'lervag/vimtex'
|
|
|
|
use 'neovim/nvim-lspconfig'
|
|
|
|
use 'octol/vim-cpp-enhanced-highlight'
|
|
|
|
use 'prabirshrestha/asyncomplete-lsp.vim'
|
|
|
|
use 'prabirshrestha/vim-lsp'
|
|
|
|
use 'tmux-plugins/vim-tmux'
|
|
|
|
use 'tmux-plugins/vim-tmux-focus-events'
|
|
|
|
use 'tomtom/tcomment_vim'
|
|
|
|
use 'vim-airline/vim-airline'
|
|
|
|
use 'vim-airline/vim-airline-themes'
|
|
|
|
use 'vimwiki/vimwiki'
|
|
|
|
use 'wbthomason/packer.nvim'
|
|
|
|
use 'williamboman/nvim-lsp-installer'
|
|
|
|
use 'Vimjas/vim-python-pep8-indent'
|
2022-07-04 14:18:14 +02:00
|
|
|
use 'windwp/nvim-autopairs'
|
2022-07-04 14:04:29 +02:00
|
|
|
use {'nvim-treesitter/nvim-treesitter', run = ':TSUpdate'}
|
|
|
|
use {'nvim-telescope/telescope-fzf-native.nvim', run = 'cmake -S. -Bbuild -DCMAKE_BUILD_TYPE=Release && cmake --build build --config Release && cmake --install build --prefix build'}
|
|
|
|
use {'nvim-telescope/telescope.nvim', requires = {{'nvim-lua/plenary.nvim'}}}
|
|
|
|
use {'glacambre/firenvim', run = function() vim.fn['firenvim#install'](0) end}
|
2022-07-04 15:07:13 +02:00
|
|
|
use {
|
|
|
|
"folke/trouble.nvim",
|
|
|
|
requires = "kyazdani42/nvim-web-devicons",
|
|
|
|
config = function() require("trouble").setup {} end
|
|
|
|
}
|
2022-07-04 14:04:29 +02:00
|
|
|
end)
|