Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/shougo/dpp-ext-local
Local ext for dpp.vim
https://github.com/shougo/dpp-ext-local
dpp-exts dpp-vim
Last synced: 4 months ago
JSON representation
Local ext for dpp.vim
- Host: GitHub
- URL: https://github.com/shougo/dpp-ext-local
- Owner: Shougo
- License: mit
- Created: 2023-10-12T10:06:00.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-08-16T11:42:16.000Z (5 months ago)
- Last Synced: 2024-08-16T12:57:21.146Z (5 months ago)
- Topics: dpp-exts, dpp-vim
- Language: TypeScript
- Homepage:
- Size: 11.7 KB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# dpp-ext-local
This ext implements local loading.
## 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 localPlugins = await args.dpp.extAction(
args.denops,
context,
options,
"local",
"local",
{
directory: "~/work",
options: {
frozen: true,
merged: false,
},
},
) as Plugin[] | undefined;
```