NixOS/dev/language-server.nix

9 lines
210 B
Nix
Raw Normal View History

2023-11-17 17:49:50 +00:00
{ pkgs, config, ... }: {
# various language server used by IDEs and by my Neovim config
environment.systemPackages = with pkgs; [
shellcheck
lua-language-server
pyright
];
}