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.
|
|
|
print("Loading plugins")
|
|
|
|
|
|
|
|
vim.cmd [[packadd packer.nvim]]
|
|
|
|
|
|
|
|
return require('packer').startup(function(use)
|
|
|
|
use 'wbthomason/packer.nvim'
|
|
|
|
|
|
|
|
-- this thing finds files or something
|
|
|
|
use {
|
|
|
|
'nvim-telescope/telescope.nvim',
|
|
|
|
tag = '0.1.8',
|
|
|
|
requires = {
|
|
|
|
{'nvim-lua/plenary.nvim'}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
use {
|
|
|
|
'nvim-treesitter/nvim-treesitter',
|
|
|
|
run = ':TSUpdate'
|
|
|
|
}
|
|
|
|
|
|
|
|
use { 'nvim-treesitter/playground' }
|
|
|
|
|
|
|
|
use { "rose-pine/neovim", as = "rose-pine" }
|
|
|
|
|
|
|
|
-- hmmmm try this?
|
|
|
|
-- https://github.com/ThePrimeagen/harpoon/tree/harpoon2
|
|
|
|
|
|
|
|
use { "mbbill/undotree" }
|
|
|
|
|
|
|
|
use { "tpope/vim-fugitive" }
|
|
|
|
|
|
|
|
use {
|
|
|
|
"lewis6991/gitsigns.nvim"
|
|
|
|
}
|
|
|
|
end)
|
|
|
|
|