mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-01-31 16:57:55 +00:00
20 lines
321 B
Nix
20 lines
321 B
Nix
|
{ 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";
|
||
|
};
|
||
|
}
|