neovim-copilot-nix-bundle VS nixvim

Compare neovim-copilot-nix-bundle vs nixvim and see what are their differences.

nixvim

Configure Neovim with Nix! [maintainer=@pta2002, @traxys, @GaetanLepage] (by nix-community)
Our great sponsors
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • WorkOS - The modern identity platform for B2B SaaS
  • SaaSHub - Software Alternatives and Reviews
neovim-copilot-nix-bundle nixvim
1 11
12 1,142
- 16.8%
0.0 9.9
over 2 years ago 3 days ago
Nix Nix
Apache License 2.0 MIT License
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

neovim-copilot-nix-bundle

Posts with mentions or reviews of neovim-copilot-nix-bundle. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2021-10-27.

nixvim

Posts with mentions or reviews of nixvim. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-12-09.
  • Use traditional config on nixos with nixvim
    3 projects | /r/neovim | 9 Dec 2023
    # .../nixvim.nix { config, pkgs, lib, ... }: let myConfig = builtins.fetchGit { url = "https://github.com/myusername/nvim"; ref = "master"; }; nixvim = import (builtins.fetchGit { url = "https://github.com/nix-community/nixvim"; ref = "nixos-23.05"; }); sqliteLibPath = lib.makeLibraryPath [ pkgs.sqlite ]; in { imports = [ nixvim.homeManagerModules.nixvim ]; home.activation.copyLuaConfig = lib.hm.dag.entryAfter [ "writeBoundary" ] '' if [ ! -d ${config.xdg.configHome}/nvim ]; then mkdir -p ${config.xdg.configHome}/nvim fi shopt -s extglob cp -r ${myConfig}/!(init.lua) ${config.xdg.configHome}/nvim ''; programs.nixvim = { extraPackages = [ pkgs.sqlite ]; enable = true; extraConfigLua = '' vim.g.sqlite_clib_path = "${sqliteLibPath}" .. "/libsqlite3.so" '' + builtins.readFile "${myConfig}/init.lua"; }; }
  • Nix flakes + IDE integration?
    1 project | /r/NixOS | 6 Dec 2023
    For NeoVim there is https://github.com/nix-community/nixvim. I wrote a blog post some time ago how you can achieve integrated development tooling with flakes + nixvim: https://juuso.dev/blogPosts/modular-neovim/modular-neovim-with-nix.html
  • NixVim – A Neovim configuration system for Nix
    1 project | news.ycombinator.com | 18 Sep 2023
  • Packaging neovim configuration using Nix
    3 projects | /r/neovim | 6 Jul 2023
    I would propose to try Nixvim.
  • Neovim flake Updates
    1 project | /r/NixOS | 5 Jun 2023
    Cool. Have you checked nixvim? Tons of options, and quite straightforward to include your own in the right place.
  • using NixOS as a developer
    3 projects | /r/NixOS | 19 Mar 2023
    I use plain in the sense that it isn't configured for me, but I use this flake to make it easy to do so myself https://github.com/pta2002/nixvim
  • Nixvim: A Neovim configuration system for nix
    2 projects | /r/NixOS | 14 Mar 2023
    I am one of the maintainers of nixvim and I wanted to present it here.
  • Settings for a neovim plugin in home-manager
    3 projects | /r/NixOS | 25 Feb 2023
    This isn't exactly the answer for your problem but I've been using this for my config and haven't looked back. https://github.com/pta2002/nixvim
  • Best way to setup Nvim on NixOS?
    8 projects | /r/NixOS | 8 Jan 2023
    Now, if you want to adopt a more "nixy" approach, I suggest you to take a look at nixvim. I do not use this project personally but it looks very promising.
  • NixVim: Configure Neovim with Nix
    1 project | news.ycombinator.com | 29 Dec 2022

What are some alternatives?

When comparing neovim-copilot-nix-bundle and nixvim you can also consider the following projects:

copilot.vim - Neovim plugin for GitHub Copilot

nixos-configuration