1
0
mirror of https://github.com/nix-community/home-manager synced 2024-07-08 14:23:28 +02:00
home-manager/tests/modules/programs/neovim/no-init.nix

26 lines
612 B
Nix
Raw Normal View History

{ config, lib, pkgs, ... }:
with lib;
{
config = {
programs.neovim = {
enable = true;
vimAlias = true;
withNodeJs = false;
withPython3 = true;
withRuby = false;
extraPython3Packages = (ps: with ps; [ jedi pynvim ]);
# plugins without associated config should not trigger the creation of init.vim
plugins = with pkgs.vimPlugins; [ fugitive ({ plugin = vim-sensible; }) ];
};
nmt.script = ''
nvimFolder="home-files/.config/nvim"
assertPathNotExists "$nvimFolder/init.vim"
assertPathNotExists "$nvimFolder/init.lua"
'';
};
}