DEVELOPMENT ENVIRONMENT

~liljamo/nvim-flake

ref: 61be4156b6595ca0fbba0b980e0ce919694dc56f nvim-flake/config/default.nix -rw-r--r-- 383 bytes
61be4156Jonni Liljamo feat(lsp): rust_analyzer changes a month ago
                                                                                
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
{pkgs, ...}: {
  imports = [
    ./plugins
    ./ftplugin

    ./colourscheme.nix

    ./globals.nix

    ./opts.nix
  ];

  withNodeJs = false;
  withRuby = false;

  clipboard.providers.wl-copy.enable = true;

  extraConfigLua = ''
    -- disable inline diagnostic messages
    vim.diagnostic.config({ virtual_text = false })
  '';

  extraPackages = with pkgs; [
    delta
  ];
}