Skip to content

Commit

Permalink
nvim: dont use vscode-langservers-extracted
Browse files Browse the repository at this point in the history
Fixes a build failure on Darwin, see:
NixOS/nixpkgs#234888 (comment)

As mentioned in that thread using a catch-all package did not make a lot
of sense in the first place, best to only pull in relevant packages.
  • Loading branch information
IvarWithoutBones committed Jul 2, 2023
1 parent bead7b6 commit 4b2fc60
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions home-manager/modules/neovim/language-server.nix
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,9 @@ in
ltex-ls # Spelling suggestions
taplo-lsp # TOML
yaml-language-server # YAML
nodePackages.typescript-language-server # Typescript/javascript
nodePackages.vscode-langservers-extracted # JSON/HTML
nodePackages.typescript-language-server # Typescript/Javascript
nodePackages.vscode-json-languageserver # JSON
nodePackages.vscode-html-languageserver-bin # HTML
python3Packages.python-lsp-server # Python
sumneko-lua-language-server # Lua
cmake-language-server # CMake
Expand Down Expand Up @@ -79,7 +80,7 @@ in
omnisharp = { }; # C#
taplo = { }; # TOML
bashls = { }; # Bash
tsserver = { }; # Typescript/javascript
tsserver = { }; # Typescript/Javascript
jsonls = { }; # JSON
html = { }; # HTML

Expand Down

0 comments on commit 4b2fc60

Please sign in to comment.