mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-29 12:00:04 +02:00
nvim-lsp: Add settings for rust-analyzer (#113)
* nvim-lsp: Add settings for rust-analyzer Because the settings are quite complex they are auto-generated. This commit adds the script creating it & the generated options. * Update flake.nix Co-authored-by: Pedro Alves <pta2002@users.noreply.github.com>
This commit is contained in:
parent
5b84bbb513
commit
2f2f724f6a
5 changed files with 1846 additions and 2 deletions
|
@ -197,6 +197,9 @@ let
|
|||
name = "rust-analyzer";
|
||||
description = "Enable rust-analyzer, for Rust.";
|
||||
serverName = "rust_analyzer";
|
||||
|
||||
extraOptions = import ./rust-analyzer-config.nix lib;
|
||||
settings = cfg: { rust-analyzer = cfg; };
|
||||
}
|
||||
{
|
||||
name = "sumneko-lua";
|
||||
|
|
1560
plugins/nvim-lsp/rust-analyzer-config.nix
Normal file
1560
plugins/nvim-lsp/rust-analyzer-config.nix
Normal file
File diff suppressed because it is too large
Load diff
13
plugins/nvim-lsp/update_ra.md
Normal file
13
plugins/nvim-lsp/update_ra.md
Normal file
|
@ -0,0 +1,13 @@
|
|||
# Updating rust-analyzer options
|
||||
|
||||
Because there a large number of rust-analyzer options it's difficult to handle them by hand.
|
||||
|
||||
The options can be fetched from the [rust-analyzer package.json](https://github.com/rust-lang/rust-analyzer/blob/master/editors/code/package.json).
|
||||
|
||||
There is a derivation on the top-level flake that allows to build it easily, you just have to run:
|
||||
|
||||
```bash
|
||||
nix build .#rustAnalyzerOptions
|
||||
```
|
||||
|
||||
You can then copy the `result/share/rust-analyzer-config.nix` to the correct location.
|
Loading…
Add table
Add a link
Reference in a new issue