Skip to content

My customized version of Neovim, built with Nix.

License

Notifications You must be signed in to change notification settings

dukeofcool199/neovim

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Jenkvim

Nix Flakes Ready Built With Snowfall

  

Customized Neovim, ready for development out of the box.

Try Without Installing

You can try this configuration out without committing to installing it on your system by running the following command.

nix run github:dukeofcool199/neovim

Install

Nix Profile

You can install this package imperatively with the following command.

nix profile install github:dukeofcool199/neovim

Nix Configuration

You can install this package by adding it as an input to your Nix flake.

{
	description = "My system flake";

	inputs = {
		nixpkgs.url = "github:nixos/nixpkgs/nixos-22.11";
		unstable.url = "github:nixos/nixpkgs/nixos-unstable";

		# Snowfall is not required, but will make configuration easier for you.
		snowfall-lib = {
			url = "github:snowfallorg/lib";
			inputs.nixpkgs.follows = "nixpkgs";
		};

		neovim = {
			url = "github:dukeofcool199/neovim";
			# This flake currently requires changes that are only on the Unstable channel.
			inputs.nixpkgs.follows = "nixpkgs";
			inputs.unstable.follows = "unstable";
		};
	};

	outputs = inputs:
		inputs.snowfall-lib.mkFlake {
			inherit inputs;
			src = ./.;

			overlays = with inputs; [
				# Use the overlay provided by this flake.
				neovim.overlays.default

				# There is also a named overlay, though the output is the same.
				neovim.overlays."package/neovim"
			];
		};
}

About

My customized version of Neovim, built with Nix.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Nix 74.4%
  • Lua 25.4%
  • Other 0.2%