neovim-flake/README.md

61 lines
2.1 KiB
Markdown
Raw Normal View History

2024-08-24 22:30:11 -07:00
# Neovim Configuration Flake
This is the Neovim configuration for all my NixOS and Nix enabled systems (such as with nix-darwin on macOS).
2024-08-25 00:06:42 -07:00
It aims to be minimal and utilitarian; it forgoes many blingful features like status lines, sidebars, or fancy UI enhancements
in favor of native (neo)Vim, while still having everything useful you'd expect, like LSPs, file explorer (`yazi`), completions,
advanced language tools, and QoL enhancements.
2024-08-24 22:30:11 -07:00
It uses the [Nixvim](https://nix-community.github.io/nixvim/) project under the hood to declaratively
configure Neovim and its plugins, and installs some LSPs and other tools needed by it (like `yazi`, `fd`, etc).
2024-08-25 00:06:42 -07:00
It simply outputs a package which provides the binary `nvim`. It can be called just like the regular `nvim` binary, except it bundles
all of my custom configuration and their dependencies with the power of Nix. An entirely self-contained, reproducible, purely functional text editor. Amazing.
2024-08-24 22:30:11 -07:00
2024-08-24 23:15:57 -07:00
Feel free to fork or copy the config to use yourself. It's free in the [public domain](./LICENSE).
2024-08-24 22:42:52 -07:00
Thanks to [this gist](https://gist.github.com/siph/288b7c6b5f68a1902d28aebc95fde4c5) for showing me how to
build a Nixvim configuration as a standalone Nix package.
2024-08-24 22:30:11 -07:00
## Usage
2024-08-25 00:06:42 -07:00
You can test drive my config in just one line:
```sh
nix run 'github:youwen5/neovim-flake'
```
If for some reason, you want to install it permanently, add it to your flake inputs,
and install the package in the usual way:
2024-08-24 22:30:11 -07:00
```nix
# flake.nix
{
description = "Your system configuration flake.";
inputs = {
# -- snip --
2024-08-25 00:06:42 -07:00
custom-neovim.url = "github:youwen5/neovim-flake";
};
2024-08-24 22:30:11 -07:00
# -- snip --
};
# -- snip --
}
```
```nix
2024-08-25 00:06:42 -07:00
# Wherever you install packages for your system or user:
2024-08-24 22:30:11 -07:00
2024-08-25 00:06:42 -07:00
{inputs, system, ...}:
{
environment.systemPackages = [
inputs.custom-neovim.packages.${system}.default
# supported systems: x86_64-linux, aarch64-linux, x86_64-darwin, aarch64-darwin
2024-08-24 22:30:11 -07:00
];
2024-08-25 00:06:42 -07:00
}
2024-08-24 22:30:11 -07:00
```
2024-08-25 00:06:42 -07:00
> ![WARNING]
> This package will add the symlinks `vim -> nvim` and `vi -> nvim` so it will conflict with
> `pkgs.vim` and any programs installing binaries called `vim` or `vi`. You must remove existing
> Neovim and Vim packages to install this.