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/runtime.nix

32 lines
637 B
Nix
Raw Normal View History

2022-08-23 22:02:05 +02:00
{ config, lib, pkgs, ... }:
with lib;
{
config = {
programs.neovim = {
enable = true;
plugins = with pkgs.vimPlugins; [
vim-nix
{
plugin = vim-commentary;
runtime = {
"after/ftplugin/c.vim".text = ''
" plugin-specific config
setlocal commentstring=//\ %s
setlocal comments=://
'';
};
}
];
extraPython3Packages = (ps: with ps; [ jedi pynvim ]);
};
nmt.script = ''
ftplugin="home-files/.config/nvim/after/ftplugin/c.vim"
assertFileExists "$ftplugin"
'';
};
}