mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-23 09:18:38 +02:00
plugins/nvim-lsp: made a new directory for language servers (#183)
This commit is contained in:
parent
9cf0880aa9
commit
8f266e86ef
5 changed files with 4 additions and 4 deletions
|
@ -152,7 +152,7 @@ in {
|
||||||
setting it to false may improve startup time
|
setting it to false may improve startup time
|
||||||
'';
|
'';
|
||||||
}
|
}
|
||||||
// (import ../nvim-lsp/rust-analyzer-config.nix lib);
|
// (import ../nvim-lsp/language-servers/rust-analyzer-config.nix lib);
|
||||||
};
|
};
|
||||||
config = let
|
config = let
|
||||||
cfg = config.plugins.rust-tools;
|
cfg = config.plugins.rust-tools;
|
||||||
|
|
|
@ -9,7 +9,7 @@ with lib; let
|
||||||
helpers = import ../helpers.nix {inherit lib;};
|
helpers = import ../helpers.nix {inherit lib;};
|
||||||
in {
|
in {
|
||||||
imports = [
|
imports = [
|
||||||
./basic-servers.nix
|
./language-servers
|
||||||
];
|
];
|
||||||
|
|
||||||
options = {
|
options = {
|
||||||
|
|
|
@ -5,9 +5,9 @@
|
||||||
...
|
...
|
||||||
} @ args:
|
} @ args:
|
||||||
with lib; let
|
with lib; let
|
||||||
helpers = import ./helpers.nix args;
|
helpers = import ../helpers.nix args;
|
||||||
|
|
||||||
optionWarnings = import ../../lib/option-warnings.nix args;
|
optionWarnings = import ../../../lib/option-warnings.nix args;
|
||||||
basePluginPath = ["plugins" "lsp" "servers"];
|
basePluginPath = ["plugins" "lsp" "servers"];
|
||||||
|
|
||||||
servers = [
|
servers = [
|
Loading…
Add table
Add a link
Reference in a new issue