Skip to content

Commit

Permalink
Add welcome text
Browse files Browse the repository at this point in the history
  • Loading branch information
mrshmllow committed Jul 1, 2024
1 parent 9a87c93 commit 438b573
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -73,13 +73,23 @@
'';
});

templates = {
templates = let
welcomeText = ''
Rename the `example/` directory, and references to it in `flake.nix`, to something unique for your neovim configuration.
Read more about configuring neovim with `:h config`.
Run your neovim configuration with `nix run .#neovim`.
'';
in{
stable = {
inherit welcomeText;
path = ./templates/stable;
description = "A simple stable neovim configuration flake";
};

nightly = {
inherit welcomeText;
path = ./templates/nightly;
description = "A simple nightly neovim configuration flake";
};
Expand Down

0 comments on commit 438b573

Please sign in to comment.