nvim-lsp: add bashls language server (#108)

This commit is contained in:
Gaétan Lepage 2023-01-10 13:41:47 +01:00 committed by GitHub
parent 84006ea282
commit f32627307a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 1 deletions

View file

@ -2,6 +2,11 @@
let let
helpers = import ./helpers.nix args; helpers = import ./helpers.nix args;
servers = [ servers = [
{
name = "bashls";
description = "Enable bashls, for bash.";
packages = [ pkgs.nodePackages.bash-language-server ];
}
{ {
name = "clangd"; name = "clangd";
description = "Enable clangd LSP, for C/C++."; description = "Enable clangd LSP, for C/C++.";