Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/jakehamilton/neovim
- Owner: jakehamilton
- License: other
- Created: 2022-09-09T04:02:04.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-10-15T23:16:52.000Z (22 days ago)
- Last Synced: 2024-10-17T09:22:02.593Z (21 days ago)
- Language: Nix
- Size: 221 KB
- Stars: 36
- Watchers: 3
- Forks: 11
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ✨ Neovim Plus Ultra ✨
> 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
];
}
```