From f7204c015ec5be84ba79e001d6e6b0525e7e1c80 Mon Sep 17 00:00:00 2001 From: Rootiest Date: Sat, 6 Jul 2024 07:57:52 -0400 Subject: [PATCH] feat: :sparkles: AI Code-completion Implements AI code completion powered by Codeium --- README.md | 1 + init.lua | 9 --------- 2 files changed, 1 insertion(+), 9 deletions(-) diff --git a/README.md b/README.md index d6b5a0b..654d52c 100644 --- a/README.md +++ b/README.md @@ -53,6 +53,7 @@ The rootiest neovim configuration you will ever see! - LSP support for many languages and automatic setup for many more - Remotely spawn a neovim instance over ssh, in a container, or from a git repo - Dashboard logo adjusts to the size of the window +- Codeium-powered AI completion ## Credits diff --git a/init.lua b/init.lua index 8add482..1c193de 100644 --- a/init.lua +++ b/init.lua @@ -282,20 +282,11 @@ require("lazy").setup({ MiniIcons.mock_nvim_web_devicons() end, }, - { - "zbirenbaum/copilot.lua", - cmd = "Copilot", - event = "InsertEnter", - config = function() - require("copilot").setup({}) - end, - }, { "Exafunction/codeium.vim", lazy = true, event = "BufEnter", config = function() - -- Change '' here to any keycode you like. vim.keymap.set("i", "", function() return vim.fn["codeium#Accept"]() end, { expr = true, silent = true })