You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
266 B
Lua
16 lines
266 B
Lua
5 months ago
|
print("loading plugins")
|
||
|
|
||
|
vim.cmd [[packadd packer.nvim]]
|
||
|
|
||
|
return require('packer').startup(function(use)
|
||
|
use 'wbthomason/packer.nvim'
|
||
|
|
||
|
use {
|
||
|
'nvim-telescope/telescope.nvim',
|
||
|
tag = '0.1.8',
|
||
|
requires = {
|
||
|
{'nvim-lua/plenary.nvim'}
|
||
|
}
|
||
|
}
|
||
|
end)
|