From a699d08288f709425b6991d4fa0c11276236cf7a Mon Sep 17 00:00:00 2001 From: Brett Gleason Date: Tue, 18 Mar 2025 19:43:24 -0500 Subject: [PATCH 1/3] add nixCats and nvf to the Alternatives section of the README --- README.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index eae8c54..4bbe5bf 100644 --- a/README.md +++ b/README.md @@ -376,10 +376,9 @@ Besides Lazy-Nix-Helper there are other tools and strategies you might choose to ### Nix-based solutions - [Home-Manager](https://nix-community.github.io/home-manager/) provides options for installing and configuring neovim plugins + - [nixCats](https://github.com/BirdeeHub/nixCats-nvim/) is a neovim package manager written in Nix. Insteady of "nixifying" your config, use Nix to manage your plugin installation and Lua for configuration - [NixVim](https://github.com/nix-community/nixvim/) is a neovim distribution built around Nix modules. It provides nix-style configuration options for every neovim configuration option as well as options for many plugins - - ### Prebuilt flakes - TODO: include some examples + - [nvf](https://github.com/NotAShelf/nvf/) is a flake-based neovim configuration framework ### Non-nix - Using your existing config as-is. Depending on how complicated your current config is and what it includes, you may be able to copy your dotfiles and have everything work out of the box. The main downside is that you lose the reproducability benefits of nix by using a different package manager From c18fa05520c8cc2b9e2aaa372d3a328e010fdc0a Mon Sep 17 00:00:00 2001 From: Brett Gleason Date: Tue, 18 Mar 2025 19:44:46 -0500 Subject: [PATCH 2/3] update CHANGELOG to reflect README changes --- CHANGELOG.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index aa40dfc..12627ca 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## UNRELEASED + +### Docs + +- Add nixCats and nvf to the Alternatives section in the README + ## [0.6.0] 2024-08-28 ### Features From ae70921d30c6048b61711cc74e28a09817a18578 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Wed, 19 Mar 2025 00:47:48 +0000 Subject: [PATCH 3/3] Auto generate docs --- doc/lazy-nix-helper.nvim.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/lazy-nix-helper.nvim.txt b/doc/lazy-nix-helper.nvim.txt index ac65a5f..b6baf77 100644 --- a/doc/lazy-nix-helper.nvim.txt +++ b/doc/lazy-nix-helper.nvim.txt @@ -1,4 +1,4 @@ -*lazy-nix-helper.nvim.txt* For Neovim >= 0.9.0? Last change: 2024 August 29 +*lazy-nix-helper.nvim.txt* For Neovim >= 0.9.0? Last change: 2025 March 19 ============================================================================== Table of Contents *lazy-nix-helper.nvim-table-of-contents* @@ -467,9 +467,9 @@ to manage your neovim configuration under NixOS: NIX-BASED SOLUTIONS ~ - Home-Manager provides options for installing and configuring neovim plugins +- nixCats is a neovim package manager written in Nix. Insteady of "nixifying" your config, use Nix to manage your plugin installation and Lua for configuration - NixVim is a neovim distribution built around Nix modules. It provides nix-style configuration options for every neovim configuration option as well as options for many plugins - -### Prebuilt flakes TODO: include some examples +- nvf is a flake-based neovim configuration framework ### Non-nix - Using your existing config as-is. Depending on how complicated your current config is and what it includes, you may be able to copy your