12 lines
212 B
Nix
12 lines
212 B
Nix
# homepage: https://github.com/AstroNvim/astrocore
|
|
{ lib, pkgs, ... }:
|
|
|
|
{
|
|
extra = {
|
|
packages = [
|
|
(import ./package { inherit lib pkgs; })
|
|
];
|
|
|
|
config = "require('astrocore').setup({})";
|
|
};
|
|
}
|