1
0
mirror of https://github.com/jdhao/nvim-config.git synced 2025-06-08 14:14:33 +02:00

update packer.nvim settings

Change matching pattern so that we do not confuse this plugins.lua with
files of the same name in other path.
This commit is contained in:
jdhao 2021-07-13 01:34:18 +08:00
parent 64819a99ce
commit 9c434b472e

View File

@ -291,6 +291,6 @@ require('packer').startup(
vim.api.nvim_exec([[
augroup packer_auto_compile
autocmd!
autocmd BufWritePost plugins.lua source <afile> | PackerCompile | unsilent echomsg 'Packer.nvim settings recompiled!'
autocmd BufWritePost */nvim/lua/plugins.lua source <afile> | PackerCompile | unsilent echomsg 'Packer.nvim settings recompiled!'
augroup END
]], false)