My copy of kickstart.nix.nvim
Find a file
2025-12-18 00:23:42 -05:00
nix refactor: big overhaul to config, too much to talk about, qol changes that I wanted essentially 2025-12-18 00:21:05 -05:00
nvim refactor: big overhaul to config, too much to talk about, qol changes that I wanted essentially 2025-12-18 00:21:05 -05:00
.gitignore Initial Commit 2024-08-26 22:37:32 -04:00
.stylua.toml Initial Commit 2024-08-26 22:37:32 -04:00
flake.lock bump nixpkgs 2025-12-18 00:23:11 -05:00
flake.nix Initial Commit 2024-08-26 22:37:32 -04:00
LICENSE Initial Commit 2024-08-26 22:37:32 -04:00
README.md Fix formatting issue in README.md 2025-12-18 00:23:42 -05:00

nvim-flake

This is my personal configuration started from Kickstart-nix.nvim, I really liked the design and decided to base my configuration on it, if you are seeing this don't copy from me instead start from scratch, because I deviate a good amount with my own biases.

Installation

If you would like to install this into your configuration you can do so by adding the input into your system flake, and then adding this to your configuration:

nixpkgs.overlays = [
    nvim-flake.overlays.default
];

environment.systemPackages = with pkgs; [
    nvim-pkg # The default package added by the overlay
];

Testing

You run this with:

nix run "github:kossLAN/NvimFlake"