mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 00:39:45 +01:00
23 lines
424 B
Nix
23 lines
424 B
Nix
|
{ config, lib, pkgs, ... }:
|
||
|
|
||
|
with lib;
|
||
|
|
||
|
{
|
||
|
config = {
|
||
|
programs.neovim = {
|
||
|
enable = true;
|
||
|
package = pkgs.neovim-unwrapped;
|
||
|
vimAlias = true;
|
||
|
withNodeJs = false;
|
||
|
withPython3 = true;
|
||
|
withRuby = false;
|
||
|
|
||
|
extraPython3Packages = (ps: with ps; [ jedi pynvim ]);
|
||
|
};
|
||
|
nmt.script = ''
|
||
|
vimrc="home-files/.config/nvim/init.vim"
|
||
|
assertPathNotExists "$vimrc"
|
||
|
'';
|
||
|
};
|
||
|
}
|