nvim: trying out just using blink cmp for neocodium as well

This commit is contained in:
Daniel Lundin 2024-12-31 14:33:50 +01:00
parent c749caf2e9
commit cdc020ff0d
Signed by: dln
SSH key fingerprint: SHA256:dQy1Xj3UiqJYpKR5ggQ2bxgz4jCH8IF+k3AB8o0kmdI

View file

@ -112,26 +112,6 @@
'';
}
# {
# plugin = pkgs.vimUtils.buildVimPlugin {
# name = "neocodeium";
# src = pkgs.fetchFromGitHub {
# owner = "monkoose";
# repo = "neocodeium";
# rev = "4da81528468b33585c411f31eb390dce573ccb14"; # v1.8.0
# hash = "sha256-1n9nNqBNwNDSzbAkm8eB4HZLNy5HmMg25jPwQAnW5OU=";
# };
# };
# type = "lua";
# config = ''
# local neocodeium =require('neocodeium')
# neocodeium.setup()
# 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 = "diagflow";