mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 08:35:43 +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
|
# See https://github.com/neovim/nvim-lspconfig/blob/master/lua/lspconfig.lua
|
||||||
"ruff_lsp"
|
"ruff_lsp"
|
||||||
"bufls"
|
"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 [
|
++ lib.optionals pkgs.stdenv.isDarwin [
|
||||||
"fsautocomplete"
|
"fsautocomplete"
|
||||||
|
|
|
@ -4,7 +4,10 @@
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|
||||||
servers.omnisharp = {
|
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 = {
|
settings = {
|
||||||
enableEditorConfigSupport = true;
|
enableEditorConfigSupport = true;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue