This repository has been archived on 2024-10-13. You can view files and clone it, but cannot push or open issues or pull requests.
nix-packages/vim/default.nix

22 lines
569 B
Nix

{
inputs,
pkgs,
}: {
copilot-lua = pkgs.vimUtils.buildVimPlugin {
name = "copilot-lua";
src = inputs.copilot-lua;
};
copilot-cmp = pkgs.vimUtils.buildVimPlugin {
name = "copilot-cmp";
src = inputs.copilot-cmp;
};
telescope-file-browser-nvim = pkgs.vimUtils.buildVimPlugin {
name = "telescope-file-browser-nvim";
src = inputs.nvim-telescope-file-browser;
# Get nvim's ShaDa file in a writable location
XDG_DATA_HOME = "/build/tmp";
# Needed for executing lua scripts
nativeBuildInputs = with pkgs; [neovim];
};
}