2
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

neovimでGitHub Copilotを触ってみた

Last updated at Posted at 2025-01-15

はじめに

そろそろCopilotを触っておかないと、老いの悪魔に連れていかれてセミになりそうなのでやってみた。

環境設定

  1. Node.jsがインストールされているか確認
    node -v
    
  2. npmがインストールされているか確認
    npm -v
    
  3. github/copilot.vimをclone
    git clone https://github.com/github/copilot.vim.git ~/.config/nvim/pack/github/start/copilot.vim
    
  4. github/copilot.vimをセットアップ
    neovimで:Copilot setupを実行
    Webブラウザが起動して認証画面が表示されるので、neovimに表示されている8桁の文字列を入力

さっそく実践

Pythonで人類の叡智、「足し算」のロジックを組んでみる。

  1. neovim起動
    vi add.py
    
  2. def add(xまで入力したら、この状態に
    image.png
  3. そのままtabキーで、足し算完成
  4. ついでにモジュール利用するためのおまじないを。改行してif と入力したら、この状態に・・・
    image.png
  5. その後のtabキーで完成・・・
  6. 正常に動作することを確認
    python add.py
    
    実行結果はもちろん「3

感想

気持ち良すぎる。
明日はChatの拡張機能を入れてみよう。

2
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?