From 8bf90b12d004e5bf9be3bd69139fabef3d4361ac Mon Sep 17 00:00:00 2001 From: Amir Date: Sat, 1 Apr 2023 22:49:41 +0200 Subject: [PATCH] Added Github Copilot plugin --- README.md | 5 +++-- sources_non_forked/copilot.vim | 1 + update_plugins.py | 1 + 3 files changed, 5 insertions(+), 2 deletions(-) create mode 160000 sources_non_forked/copilot.vim diff --git a/README.md b/README.md index 79bd924e..6b5755f2 100644 --- a/README.md +++ b/README.md @@ -95,7 +95,7 @@ I recommend reading the docs of these plugins to understand them better. Each pl * [pathogen.vim](https://github.com/tpope/vim-pathogen): Manage your vim runtimepath * [snipmate.vim](https://github.com/garbas/vim-snipmate): snipmate.vim aims to be a concise vim script that implements some of TextMate's snippets features in Vim * [ale](https://github.com/dense-analysis/ale): Syntax and lint checking for vim (ALE requires NeoVim >= 0.2.0 or Vim 8 with +timers +job +channel) -* [vim-commentary](https://github.com/tpope/vim-commentary): Comment stuff out. Use `gcc` to comment out a line (takes a count), `gc` to comment out the target of a motion. `gcu` uncomments a set of adjacent commented lines. +* [vim-commentary](https://github.com/tpope/vim-commentary): Comment stuff out. Use `gcc` to comment out a line (takes a count), `gc` to comment out the target of a motion. `gcu` uncomments a set of adjacent commented lines * [vim-expand-region](https://github.com/terryma/vim-expand-region): Allows you to visually select increasingly larger regions of text using the same key combination * [vim-fugitive](https://github.com/tpope/vim-fugitive): A Git wrapper so awesome, it should be illegal * [vim-indent-object](https://github.com/michaeljsmith/vim-indent-object): Defines a new text object representing lines of code at the same indent level. Useful for python/vim scripts @@ -104,7 +104,8 @@ I recommend reading the docs of these plugins to understand them better. Each pl * [vim-zenroom2](https://github.com/amix/vim-zenroom2) Remove all clutter and focus only on the essential. Similar to iA Writer or Write Room * [gist-vim](https://github.com/mattn/gist-vim) Easily create gists from Vim using the `:Gist` command * [vim-indent-guides](https://github.com/nathanaelkane/vim-indent-guides) Is a plugin for visually displaying indent levels in Vim -* [editorconfig-vim](https://github.com/editorconfig/editorconfig-vim) EditorConfig helps maintain consistent coding styles for multiple developers working on the same project across various editors and IDEs. +* [editorconfig-vim](https://github.com/editorconfig/editorconfig-vim) EditorConfig helps maintain consistent coding styles for multiple developers working on the same project across various editors and IDEs +* [copilot.vim](https://github.com/github/copilot.vim) Plugin for GitHub Copilot (AI autocompletion FTW 😅) ## Included color schemes diff --git a/sources_non_forked/copilot.vim b/sources_non_forked/copilot.vim new file mode 160000 index 00000000..b6e56243 --- /dev/null +++ b/sources_non_forked/copilot.vim @@ -0,0 +1 @@ +Subproject commit b6e5624351ba735e25eb8864d7d22819aad00606 diff --git a/update_plugins.py b/update_plugins.py index 2b5d53e0..766e590f 100644 --- a/update_plugins.py +++ b/update_plugins.py @@ -63,6 +63,7 @@ vim-indent-guides https://github.com/nathanaelkane/vim-indent-guides mru.vim https://github.com/vim-scripts/mru.vim editorconfig-vim https://github.com/editorconfig/editorconfig-vim dracula https://github.com/dracula/vim +co-pilot.vim https://github.com/github/copilot.vim """.strip() GITHUB_ZIP = "%s/archive/master.zip"