all repos — nixfiles @ 70d6a686739c902880c3a45f6979ad469a3b75f5

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

user/settings/neovim.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
27
28
29
30
31
32
33
34
35
36
37
38
39
{ config
, lib
, pkgs
, ...
}: {
  programs.neovim = {
    enable = true;
    vimAlias = true;
    vimdiffAlias = true;
    withNodeJs = true;
    plugins = with pkgs.vimPlugins; [
      commentary
      coc-git
      coc-json
      coc-yaml
      direnv-vim
      vim-surround
    ];
    extraLuaConfig = builtins.readFile ../nvim/init.lua;
    coc = {
      enable = true;
      settings = {
        "json.enable" = true;
        "suggest.enablePreview" = true;
        "coc.preferences.formatOnSaveFiletypes" = [ "nix" ];
        "nil.formatting.command" = "nixpkgs-fmt";
        semantictokens = {
          filetypes = [ "nix" ];
        };
        languageserver = {
          nix = {
            command = "${pkgs.nil}/bin/nil";
            filetypes = [ "nix" ];
          };
        };
      };
    };
  };
}