14 lines
405 B
Nix
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=";
|
|
};
|
|
};
|
|
};
|
|
}
|