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

https://github.com/shougo/ddc-source-copilot

Copilot completion for ddc.vim
https://github.com/shougo/ddc-source-copilot

ddc-source ddc-vim

Last synced: 10 months ago
JSON representation

Copilot completion for ddc.vim

Awesome Lists containing this project

README

          

# ddc-source-copilot

Copilot completion for ddc.vim

NOTE: It is based on "ddc-copilot".

https://github.com/yuki-yano/ddc-copilot

## Required

### copilot.vim or copilot.lua

https://github.com/github/copilot.vim

https://github.com/zbirenbaum/copilot.lua

### denops.vim

https://github.com/vim-denops/denops.vim

### ddc.vim

https://github.com/Shougo/ddc.vim

## Configuration

```vim
let g:copilot_no_maps = v:true

call ddc#custom#patch_global('sources', ['copilot'])

call ddc#custom#patch_global('sourceOptions', #{
\ copilot: #{
\ mark: 'copilot',
\ matchers: [],
\ minAutoCompleteLength: 0,
\ }
\ })
call ddc#custom#patch_global('sourceParams', #{
\ copilot: #{
\ copilot: 'vim',
\ }
\ })
```