summaryrefslogtreecommitdiff
path: root/lua/user/plugins.lua
blob: b491d35bbcf46f9da4d91bf1735a8b5f79bb8044 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
-- Use a protected call so we don't error out on first use
local status_ok, packer = pcall(require, "packer")
if not status_ok then
  return
end

-- Install your plugins here
return packer.startup(function(use)
	-- My plugins here
	use "wbthomason/packer.nvim" -- Have packer manage itself
	--use "nvim-lua/popup.nvim"    -- An implementation of the Popup API from vim in Neovim
	--use "nvim-lua/plenary.nvim"  -- Useful lua functions used by lots of plugins
end)