Files
nixos/hosts/nb/modules/nvim/chatgpt.nix
2024-12-29 22:04:44 +01:00

14 lines
405 B
Nix

self: super: {
vimPlugins = super.vimPlugins // {
chatgpt-nvim = super.vimUtils.buildVimPlugin {
pname = "chatgpt-nvim";
version = "1.0.0";
src = super.fetchgit {
url = "https://git.cloonar.com/Cloonar/chatgpt.vim.git";
rev = "162ab2d82054897ac0d371d7047811abcd510ab5";
sha256 = "sha256-0BvVCGXO4GAUumv36+/9/S8pGMKCl/V3rxEKeiKW5xo=";
};
};
};
}