https://github.com/shougo/dpp-ext-packspec
Packspec ext for dpp.vim
https://github.com/shougo/dpp-ext-packspec
dpp-exts dpp-vim
Last synced: 8 months ago
JSON representation
Packspec ext for dpp.vim
- Host: GitHub
- URL: https://github.com/shougo/dpp-ext-packspec
- Owner: Shougo
- License: mit
- Created: 2023-11-08T23:46:57.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-09-06T05:49:47.000Z (almost 2 years ago)
- Last Synced: 2025-02-01T15:04:45.045Z (over 1 year ago)
- Topics: dpp-exts, dpp-vim
- Language: TypeScript
- Homepage:
- Size: 9.77 KB
- Stars: 4
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# dpp-ext-packspec
This ext implements packspec support.
https://github.com/neovim/packspec
NOTE: Plugin dependencies are only supported.
NOTE: Plugins must be installed to load packspec files.
## Required
### denops.vim
https://github.com/vim-denops/denops.vim
### dpp.vim
https://github.com/Shougo/dpp.vim
## Configuration
```typescript
const [context, options] = await args.contextBuilder.get(args.denops);
const packspecPlugins = await args.dpp.extAction(
args.denops,
context,
options,
"packspec",
"load",
{
basePath,
plugins,
},
) as Plugin[] | undefined;
```