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

@ -1,7 +1,7 @@
{ pkgs, ... }:
{
programs.nixvim = {
# This just enables NixVim.
# This just enables NixVim.
# If all you have is this, then there will be little visible difference
# when compared to just installing NeoVim.
enable = true;

View file

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