mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 08:49:44 +01:00
addc78bea0
This adds two new options: 'programs.neovim.coc.{enable,settings}`. These settings offer a simple interface over `xdg.configFile."nvim/coc-settings.json`, using the standard Nix' syntax instead of a multiline string.
27 lines
522 B
Nix
27 lines
522 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
{
|
|
config = {
|
|
programs.neovim = {
|
|
enable = true;
|
|
coc = {
|
|
enable = true;
|
|
settings = {
|
|
# my variable
|
|
foo = "bar";
|
|
};
|
|
};
|
|
};
|
|
|
|
nmt.script = ''
|
|
cocSettings="$TESTED/home-files/.config/nvim/coc-settings.json"
|
|
cocSettingsNormalized="$(normalizeStorePaths "$cocSettings")"
|
|
|
|
assertFileExists "$cocSettings"
|
|
assertFileContent "$cocSettingsNormalized" "${./coc-config.expected}"
|
|
'';
|
|
};
|
|
}
|
|
|