Add bash language server.

main
Joshua Potter 2023-11-20 08:09:07 -07:00
parent 1c5dffb8ed
commit 8dc30efbdf
2 changed files with 14 additions and 0 deletions

View File

@ -65,6 +65,7 @@ in
};
imports = [
./lang/bash.nix
./lang/lean.nix
./lang/lua.nix
./lang/nix.nix

View File

@ -0,0 +1,13 @@
{ pkgs, ... }:
{
programs.neovim = {
nvim-lspconfig = ''
require('init.lsp').setup(require('lspconfig').bashls) {}
'';
extraPackages = with pkgs; [
nodePackages.bash-language-server
shellcheck
];
};
}