mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 08:35:43 +02:00
Created the plugins/plugin-defs.nix file, which will include definitions for all plugins not in nixpkgs. This way, we can get rid of the packer dependency and make the whole thing truly declarative!
16 lines
489 B
Nix
16 lines
489 B
Nix
# This is for plugins not in nixpkgs
|
|
# e.g. intellitab.nvim
|
|
# Ideally, in the future, this would all be specified as a flake input!
|
|
{ pkgs, ... }:
|
|
{
|
|
intellitab-nvim = pkgs.vimUtils.buildVimPlugin rec {
|
|
pname = "intellitab-nvim";
|
|
version = "a6c1a505865f6131866d609c52440306e9914b16";
|
|
src = pkgs.fetchFromGitHub {
|
|
owner = "pta2002";
|
|
repo = "intellitab.nvim";
|
|
rev = version;
|
|
sha256 = "19my464jsji7cb81h0agflzb0vmmb3f5kapv0wwhpdddcfzvp4fg";
|
|
};
|
|
};
|
|
}
|