summaryrefslogtreecommitdiff
path: root/lua/config/packer.lua
diff options
context:
space:
mode:
authorGustaf Rydholm <gustaf.rydholm@gmail.com>2022-04-12 21:16:46 +0200
committerGustaf Rydholm <gustaf.rydholm@gmail.com>2022-04-12 21:16:46 +0200
commitbbd8c1d59ca4249a9477aece9d80cf3405c764a6 (patch)
tree05139cb5e6a42d6e700e4dc440c5a57c27f164f9 /lua/config/packer.lua
parent82779fc7fbb42f5f97bf5840d3248ad84a63c095 (diff)
fix: remove lua files
Diffstat (limited to 'lua/config/packer.lua')
-rw-r--r--lua/config/packer.lua23
1 files changed, 0 insertions, 23 deletions
diff --git a/lua/config/packer.lua b/lua/config/packer.lua
deleted file mode 100644
index 9302149..0000000
--- a/lua/config/packer.lua
+++ /dev/null
@@ -1,23 +0,0 @@
-local status_ok, packer = pcall(require, "packer")
-if not status_ok then
- return
-end
-
--- Autocommand that reloads neovim whenever you save the plugins.lua file
-vim.cmd [[
- augroup packer_user_config
- autocmd!
- autocmd BufWritePost plugins.lua source <afile> | PackerSync
- augroup end
-]]
-
--- Have packer use a popup window
-packer.init {
- display = {
- open_fn = function()
- return require("packer.util").float { border = "rounded" }
- end,
- },
-}
-
-return packer