all repos — nixfiles @ f61a949a9a394afd3f21b8e993412630ad73a2e9

System and user configuration, managed by nix and home-manager

user/modules/nvim-coc.nix (view raw)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{
  config,
  lib,
  pkgs,
  ...
}:
with lib; let
  inherit (pkgs) stdenv;
  cfg = config.programs.neovim.coc;
in {
  options.programs.neovim.coc = {
    config = mkOption {
      type = types.attrs;
      default = {};
      description = ''
        Settings for coc.nvim
      '';
    };
  };

  config = {
    xdg.configFile."nvim/coc-settings.json" = {
      source = pkgs.writeText "coc-settings.json" (builtins.toJSON cfg.config);
    };
  };
}