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.

38 lines
655 B
Lua

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