- Copilot
- Github Copilot for Nova
- 621 Installs
-
This extension is allowed to:
- Read Files
- Launch Subprocesses
Readme
Copilot is a Nova integration with Github Copilot Language Server
Supported syntaxes
actionscript, ada, amber, apacheconfig, applescript, asciidoc, assembly, bash, batch, c, clojure, cmake, cobol, coffeescript, cpp, crystal, csharp, css, csv, d, dart, diff, dockerfile, elixir, elm, erlang, fish, fortran, gitconfig, gitignore, go, gradle, graphql, groovy, haskell, haxe, hjson, html, html+ejs, html+erb, ini, java, javascript, json, json5, julia, kotlin, latex, less, lisp, log, lua, make, makefile, markdown, matlab, mediawiki, mysql, nginxconfig, nim, objective-c, objective-cpp, ocaml, orgmode, pascal, perl, php, plaintext, plsql, postgresql, powershell, prolog, properties, protobuf, python, r, regex, restructuredtext, ruby, rust, sass, scala, scheme, scss, shellscript, smalltalk, sqlite, sql, sshconfig, strings, stylus, svelte, swift, tcl, textile, thrift, toml, tsq, tsql, tsx, typescript, vbnet, verilog, vhdl, vue, xml, yaml, zig, zsh
Requirements
Copilot extension requires some additional tools to be installed:
- Copilot Language Server
Install Copilot Language Server
npm install @github/copilot-language-server
Check installation
$ copilot-language-server --version
1.302.0
Configuration
Once Copilot Language Server is installed we need to set the correct path in extension settings
Open Extensions > Extension Library > Copilot then select Copilot's Settings tab.
In the Copilot Language Server path paste the copilot-language-server
path.
Path can be found using which
command
$ which copilot-language-server
/Users/besya/.local/share/mise/installs/node/23.11.0/bin/copilot-language-server
Usage
Sign in
- Go to Extensions > Copilot > Sign In
- Notification should appear with the code
- Copy the code and click "Sign in with Github"
- Switch to your browser and you should see the Github's Device Activation page
- Click "Continue"
- Paste the code you copied earlier
- Click "Continue"
- Click "Authorize Github Copilot Plugin"
- You should see the page with "Congratulations, you're all set!" message
- Close this page and switch back to Nova
- Wait a few seconds and the Notification should appear with the "Authorized" message
- Congratulations. Now you are able to use Copilot
If you have issues related to Sign In check this steps first:
Completions
Default shortcut for inline completion command is ^"
(control-shift-')
The completion provided by copilot-language-server should appear next to your cursor position and autoselected.
Custom shortcut
Changing the default keyboard shortcut to a custom one is very easy: 1. Open Nova Settings (command+,) 2. Select "Key Bindings" 3. Enter "inline completion" in the Filter input field 4. Select the "Inline completion (Copilot)" row 5. Double-click the ^" shortcut and enter your own
Experimental feature
There is a another option to use inline completion and it's a completion by typing. This invocation happens on TextEditor.onDidStopChanging
.
This mode can be enabled in Extensions > Extension Library > Copilot > Settings by enabling the Enable inline completions on typing
checkbox.
WARNING: This is an experimental feature, so be careful not to lose or break your code by using it.
Changelog
Version 0.0.3
Remove Node path from settings. Now only LSP path is required. Commands to manually Stop/Start the Copilot
Version 0.0.2
Extend the list of available syntaxes for use with Copilot
Before: c, cpp, csharp, css, go, java, javascript, json, html, markdown, php, python, ruby, rust, typescript, yaml
After: actionscript, ada, amber, apacheconfig, applescript, asciidoc, assembly, bash, batch, c, clojure, cmake, cobol, coffeescript, cpp, crystal, csharp, css, csv, d, dart, diff, dockerfile, elixir, elm, erlang, fish, fortran, gitconfig, gitignore, go, gradle, graphql, groovy, haskell, haxe, hjson, html, html+ejs, html+erb, ini, java, javascript, json, json5, julia, kotlin, latex, less, lisp, log, lua, make, makefile, markdown, matlab, mediawiki, mysql, nginxconfig, nim, objective-c, objective-cpp, ocaml, orgmode, pascal, perl, php, plaintext, plsql, postgresql, powershell, prolog, properties, protobuf, python, r, regex, restructuredtext, ruby, rust, sass, scala, scheme, scss, shellscript, smalltalk, sqlite, sql, sshconfig, strings, stylus, svelte, swift, tcl, textile, thrift, toml, tsq, tsql, tsx, typescript, vbnet, verilog, vhdl, vue, xml, yaml, zig, zsh
Version 0.0.1
Initial release
License
MIT License
Copyright (c) 2025 Ihar Biaspalau
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.