nixos-config/configs/home-manager/winnow/default.nix

20 lines
321 B
Nix
Raw Normal View History

{ config, lib, pkgs, ... }:
{
programs.neovim = {
enable = true;
package = pkgs.neovim-nightly;
vimAlias = true;
vimdiffAlias = true;
withRuby = true;
withNodeJs = true;
withPython3 = true;
};
systemd.user.sessionVariables = {
MANPAGER = "nvim +Man!";
EDITOR = "nvim";
};
}