mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 00:25:42 +02:00
tests/lsp-servers: disable servers relying on EOL dotnet-core-combined
This commit is contained in:
parent
41657913df
commit
c39ecbb055
2 changed files with 10 additions and 1 deletions
|
@ -42,6 +42,12 @@ let
|
|||
# See https://github.com/neovim/nvim-lspconfig/blob/master/lua/lspconfig.lua
|
||||
"ruff_lsp"
|
||||
"bufls"
|
||||
# Package ‘dotnet-core-combined’ is marked as insecure, refusing to evaluate.
|
||||
# Dotnet SDK 6.0.428 is EOL, please use 8.0 (LTS) or 9.0 (Current)
|
||||
# https://github.com/NixOS/nixpkgs/pull/358533
|
||||
"dafny"
|
||||
"fsautocomplete"
|
||||
"omnisharp"
|
||||
]
|
||||
++ lib.optionals pkgs.stdenv.isDarwin [
|
||||
"fsautocomplete"
|
||||
|
|
|
@ -4,7 +4,10 @@
|
|||
enable = true;
|
||||
|
||||
servers.omnisharp = {
|
||||
enable = true;
|
||||
# Package ‘dotnet-core-combined’ is marked as insecure, refusing to evaluate.
|
||||
# Dotnet SDK 6.0.428 is EOL, please use 8.0 (LTS) or 9.0 (Current)
|
||||
# https://github.com/NixOS/nixpkgs/pull/358533
|
||||
enable = false;
|
||||
|
||||
settings = {
|
||||
enableEditorConfigSupport = true;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue