nixos-configuration/users/jrpotter/lang/bash.nix

14 lines
233 B
Nix
Raw Normal View History

2023-11-20 15:09:07 +00:00
{ pkgs, ... }:
{
home.packages = with pkgs; [
nodePackages.bash-language-server
shellcheck
];
2023-11-20 15:09:07 +00:00
programs.neovim = {
nvim-lspconfig = ''
2024-01-04 17:01:01 +00:00
require('utils.lsp').setup(require('lspconfig').bashls) {}
2023-11-20 15:09:07 +00:00
'';
};
}