From 67e262a4b7c9f8dde38e8546f51c8a9fedfcaac6 Mon Sep 17 00:00:00 2001 From: Daniel Lundin <dln@arity.se> Date: Sun, 22 Jun 2025 22:50:36 +0200 Subject: [PATCH] Remove codeium --- home/common/nvim/default.nix | 26 -------------------------- 1 file changed, 26 deletions(-) diff --git a/home/common/nvim/default.nix b/home/common/nvim/default.nix index 94a6c4a..53311c8 100644 --- a/home/common/nvim/default.nix +++ b/home/common/nvim/default.nix @@ -36,7 +36,6 @@ in extraLuaConfig = lib.fileContents ./init.lua; extraPackages = with pkgs; [ - codeium lua-language-server nixd shellcheck @@ -99,31 +98,6 @@ in ''; } - { - plugin = pkgs.vimUtils.buildVimPlugin { - name = "neocodeium"; - src = pkgs.fetchFromGitHub { - owner = "monkoose"; - repo = "neocodeium"; - rev = "a2b5257c736886ec3ccbd961766f8ab9c82b2a72"; # 2025-02-04 - hash = "sha256-mR2fzsdCVbh7nLcsSgQnhRivoKW6oFqJwuIYfz8OV0k="; - }; - doCheck = false; - }; - type = "lua"; - config = '' - local neocodeium =require('neocodeium') - neocodeium.setup({ - show_label = false, - debounce = true, - silent = false, - }) - vim.keymap.set("i", "<C-j>", neocodeium.accept, { remap = true }) - vim.keymap.set("i", "<A-f>", neocodeium.accept, { remap = true }) - vim.keymap.set("i", "<C-h>", neocodeium.cycle_or_complete, { remap = true }) - ''; - } - { plugin = pkgs.vimUtils.buildVimPlugin { name = "dieter-nvim";