44 lines
1.7 KiB
Lua
44 lines
1.7 KiB
Lua
|
require('packer').startup(function(use)
|
||
|
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'
|
||
|
use {'nvim-treesitter/nvim-treesitter', run = ':TSUpdate'}
|
||
|
use {
|
||
|
"windwp/nvim-autopairs",
|
||
|
wants = "nvim-treesitter",
|
||
|
module = { "nvim-autopairs.completion.cmp", "nvim-autopairs" },
|
||
|
config = function()
|
||
|
require("config.autopairs").setup()
|
||
|
end,
|
||
|
}
|
||
|
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}
|
||
|
end)
|