25 lines
663 B
Lua
25 lines
663 B
Lua
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"
|
|
}
|
|
use {
|
|
"sainnhe/gruvbox-material"
|
|
}
|
|
use "neovim/nvim-lspconfig"
|
|
use "hrsh7th/nvim-cmp"
|
|
use "hrsh7th/cmp-nvim-lsp"
|
|
use "saadparwaiz1/cmp_luasnip"
|
|
use "L3MON4D3/LuaSnip"
|
|
use {'akinsho/bufferline.nvim', tag = "v2.*", requires = 'kyazdani42/nvim-web-devicons'}
|
|
end)
|
|
|