Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/jakehamilton/neovim

My customized version of Neovim, built with Nix.
https://github.com/jakehamilton/neovim

Last synced: about 5 hours ago
JSON representation

My customized version of Neovim, built with Nix.

Awesome Lists containing this project

README

        

# ✨ Neovim Plus Ultra ✨


Nix Flakes Ready


Built With Snowfall

  

> Customized Neovim, ready for development out of the box.

## Screenshots

![Busy](https://github.com/jakehamilton/neovim/assets/7005773/cc318a24-51aa-4412-9cfa-610ab9cc8991)
![Dashboard](https://github.com/jakehamilton/neovim/assets/7005773/27c3a3c4-acf0-4a89-be1e-4f642144348a)

## Try Without Installing

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

```nix
nix run github:jakehamilton/neovim
```

## Install

### Nix Profile

You can install this package imperatively with the following command.

```nix
nix profile install github:jakehamilton/neovim
```

### Nix Configuration

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

```nix
{
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:jakehamilton/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"
];
};
}
```

If you've added the overlay from this flake, then in your system configuration
you can add the `plusultra.neovim` package.

```nix
{ pkgs }:

{
environment.systemPackages = with pkgs; [
plusultra.neovim
];
}
```