2021-11-30 13:53:58 +02:00
|
|
|
local packer = require("packer")
|
|
|
|
|
|
|
|
return packer.startup(function(use)
|
|
|
|
use "wbthomason/packer.nvim"
|
|
|
|
use "norcalli/nvim-base16.lua"
|
|
|
|
use {
|
|
|
|
'nvim-telescope/telescope.nvim',
|
|
|
|
requires = { {'nvim-lua/plenary.nvim'} },
|
|
|
|
}
|
|
|
|
use {
|
|
|
|
"nvim-treesitter/nvim-treesitter",
|
|
|
|
branch = "0.5-compat",
|
|
|
|
run = ":TSUpdate"
|
|
|
|
}
|
2022-05-15 11:04:50 +03:00
|
|
|
use {
|
|
|
|
"sainnhe/gruvbox-material"
|
|
|
|
}
|
|
|
|
use "neovim/nvim-lspconfig"
|
|
|
|
use "hrsh7th/nvim-cmp"
|
|
|
|
use "hrsh7th/cmp-nvim-lsp"
|
|
|
|
use "saadparwaiz1/cmp_luasnip"
|
|
|
|
use "L3MON4D3/LuaSnip"
|
2022-07-11 15:57:59 +03:00
|
|
|
use {'akinsho/bufferline.nvim', tag = "v2.*", requires = 'kyazdani42/nvim-web-devicons'}
|
2021-11-30 13:53:58 +02:00
|
|
|
end)
|
|
|
|
|