Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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;
```