Skip to content

Commit 03a11ad

Browse files
committed
Copilot.vim 1.0.0
0 parents  commit 03a11ad

22 files changed

+51918
-0
lines changed

.gitattributes

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/copilot/dist/* -whitespace -diff

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/tags

LICENSE.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
This technical preview is a Beta Preview under the [GitHub Terms of
2+
Service](https://docs.github.com/en/github/site-policy/github-terms-of-service#j-beta-previews).
3+
4+
Copyright (C) 2021 GitHub, Inc. - All Rights Reserved.

README.md

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
# Copilot.vim
2+
3+
GitHub Copilot is an AI pair programmer which suggests line completions and
4+
entire function bodies as you type. GitHub Copilot is powered by the OpenAI
5+
Codex AI system, trained on public Internet text and billions of lines of
6+
code.
7+
8+
Copilot.vim is a Vim plugin for GitHub Copilot. For now, it requires a Neovim
9+
0.6 prerelease and a Node.js installation.
10+
11+
To learn more about GitHub Copilot, visit https://copilot.github.com.
12+
13+
## Getting started
14+
15+
1. Install [Node.js][] v12 or newer.
16+
17+
2. Install a [Neovim prerelease build][]. (Note: On macOS, [extra steps][]
18+
are required to due to lack of notarization. Alternatively, Homebrew users
19+
can run `brew install neovim --HEAD`).
20+
21+
3. Install `github/copilot.vim` using vim-plug, packer.nvim, or any other
22+
plugin manager. Or to install directly:
23+
24+
git clone https://github.com/github/copilot.vim.git \
25+
~/.config/nvim/pack/github/start/copilot.vim
26+
27+
4. Start Neovim and invoke `:Copilot setup`.
28+
29+
[Node.js]: https://nodejs.org/en/download/
30+
[Neovim prerelease build]: https://github.com/github/copilot.vim/releases/tag/neovim-nightlies
31+
[extra steps]: https://github.com/neovim/neovim/issues/11011#issuecomment-786413100
32+
33+
Suggestions are displayed inline and can be accepted by pressing the tab key.
34+
See `:help copilot` for more information.

SECURITY.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
If you discover a security issue in this repo, please submit it through the
2+
[GitHub Security Bug Bounty](https://hackerone.com/github).
3+
4+
Thanks for helping make GitHub Copilot safe for everyone.

0 commit comments

Comments
 (0)