Files
nixos/hosts/nb/modules/nvim/chatgpt.nix
2025-02-23 16:00:33 +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 = "7fb8671840181ca5166fcf7b8a8d5f5e10a5efa7";
sha256 = "sha256-g4sEUoZqxlliKHj1TAxwNXN400yLN+QB4wV3drmvf9w=";
};
};
};
}