Files
nix-config/home/pc/common/programs/nvim/default.nix
T
autumn-the-kitty-cat 1b771db0c8 feat: switch over to a neovim cofeat & fix & refactor: so many things. listed in desc
switch over to a neovim configuration in lua, btrtile for dwl, remove
unnecessary things, some browser addons, rofimoji, fix february flake
2026-03-08 04:50:14 -04:00

10 lines
249 B
Nix

{ pkgs, inputs, ... }:
{
programs.neovim = {
enable = true;
package = inputs.neovim-nightly-overlay.packages.${pkgs.stdenv.hostPlatform.system}.default;
extraLuaConfig = builtins.readFile ./config.lua;
defaultEditor = true;
};
}