summaryrefslogtreecommitdiff
path: root/lua/user/plugins.lua
diff options
context:
space:
mode:
authorlouie <louie@example.com>2022-06-22 20:12:42 -0700
committerlouie <louie@example.com>2022-06-22 20:12:42 -0700
commit95bce4610af5ccc7cee4d68633ce6b7af5fe342b (patch)
treeb3383113afbc2732b4269cb1c26903c752a73184 /lua/user/plugins.lua
First commit
Diffstat (limited to 'lua/user/plugins.lua')
-rw-r--r--lua/user/plugins.lua13
1 files changed, 13 insertions, 0 deletions
diff --git a/lua/user/plugins.lua b/lua/user/plugins.lua
new file mode 100644
index 0000000..b491d35
--- /dev/null
+++ b/lua/user/plugins.lua
@@ -0,0 +1,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)