diff options
Diffstat (limited to 'lua')
-rw-r--r-- | lua/bootstrap.lua | 8 | ||||
-rw-r--r-- | lua/config/packer.lua | 8 |
2 files changed, 8 insertions, 8 deletions
diff --git a/lua/bootstrap.lua b/lua/bootstrap.lua index ea8f95b..fbccc3d 100644 --- a/lua/bootstrap.lua +++ b/lua/bootstrap.lua @@ -23,6 +23,14 @@ end ensure("wbthomason", "packer.nvim") ensure("lewis6991", "impatient.nvim") +-- 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 +]] + -- Enable faster loading with impatient require "config.impatient" return PACKER_BOOTSTRAP diff --git a/lua/config/packer.lua b/lua/config/packer.lua index 9302149..10d17da 100644 --- a/lua/config/packer.lua +++ b/lua/config/packer.lua @@ -3,14 +3,6 @@ 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 = { |