about summary refs log tree commit diff stats
path: root/modules/home/conf/nvim/plgs/lsp/servers/servers/rust-analyzer.nix
blob: cfd9dba8f54ba5c633f7444f53c03764f211c437 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{...}: {
  programs.nixvim.plugins.lsp.servers = {
    rust_analyzer = {
      enable = true;
      settings = {
        typing.autoClosingAngleBrackets.enable = true;
      };
      # NOTE: These should be provided by the devenv, to support nightly and
      # such things <2023-11-25>
      installCargo = false;
      installRustc = false;
    };
  };
}