mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 16:39:00 +02:00
plugin/rust-tools: Fix rust-analyzer settings (#262)
This commit is contained in:
parent
e33e62ff61
commit
2a3d497d29
1 changed files with 7 additions and 7 deletions
|
@ -125,13 +125,13 @@ in {
|
||||||
|
|
||||||
server =
|
server =
|
||||||
helpers.mkCompositeOption "server"
|
helpers.mkCompositeOption "server"
|
||||||
{
|
({
|
||||||
standalone = helpers.defaultNullOpts.mkBool true ''
|
standalone = helpers.defaultNullOpts.mkBool true ''
|
||||||
standalone file support
|
standalone file support
|
||||||
setting it to false may improve startup time
|
setting it to false may improve startup time
|
||||||
'';
|
'';
|
||||||
}
|
}
|
||||||
// (import ../nvim-lsp/language-servers/rust-analyzer-config.nix lib);
|
// (import ../nvim-lsp/language-servers/rust-analyzer-config.nix lib));
|
||||||
};
|
};
|
||||||
config = mkIf cfg.enable {
|
config = mkIf cfg.enable {
|
||||||
extraPlugins = with pkgs.vimPlugins; [nvim-lspconfig cfg.package];
|
extraPlugins = with pkgs.vimPlugins; [nvim-lspconfig cfg.package];
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue