Plugpac is a plugin manger written in Vim9 based on minpac, provides vim-plug-like experience
Add some options. - On-demand loading vim event ```vim Pack 'ntpeters/vim-better-whitespace', { 'event': 'CursorHold' } Pack 'neoclide/coc.nvim', { 'event': ['InsertEnter', 'CursorMoved'] } ``` - Only valid if conditions are met ```vim Pack 'nvim-treesitter/nvim-treesitter', { 'if': has('nvim') } ``` - After VimEnter, the timer_start function packadd plugins ```vim Pack 'andymass/vim-matchup', { 'type': 'lazy' } ``` - Add `g:plugpac_cfg_path` option. ```vim let g:plugpac_cfg_path = '~/.vim/rc' ```
This issue appears to be discussing a feature request or bug report related to the repository. Based on the content, it seems to be resolved. The issue was opened by yukimemi and has received 3 comments.