about summary refs log tree commit diff stats
path: root/modules/home/conf/nvim/plgs/lsp/servers/servers/rust-analyzer.nix
blob: d58c8f1ba5ca3d7704f8e7e9fa340bd37b039f18 (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;
    };
  };
}